diff --git a/account_users.go b/account_users.go index 5906c462e..e01e6dde4 100644 --- a/account_users.go +++ b/account_users.go @@ -3,11 +3,8 @@ package linodego import ( "context" "encoding/json" - "fmt" - "net/url" "time" - "github.com/go-resty/resty/v2" "github.com/linode/linodego/internal/parseabletime" ) @@ -82,91 +79,53 @@ func (i User) GetUpdateOptions() (o UserUpdateOptions) { return } -// UsersPagedResponse represents a paginated User API response -type UsersPagedResponse struct { - *PageOptions - Data []User `json:"data"` -} - -// endpoint gets the endpoint URL for User -func (UsersPagedResponse) endpoint(_ ...any) string { - return "account/users" -} - -func (resp *UsersPagedResponse) castResult(r *resty.Request, e string) (int, int, error) { - res, err := coupleAPIErrors(r.SetResult(UsersPagedResponse{}).Get(e)) - if err != nil { - return 0, 0, err - } - castedRes := res.Result().(*UsersPagedResponse) - resp.Data = append(resp.Data, castedRes.Data...) - return castedRes.Pages, castedRes.Results, nil -} - // ListUsers lists Users on the account func (c *Client) ListUsers(ctx context.Context, opts *ListOptions) ([]User, error) { - response := UsersPagedResponse{} - err := c.listHelper(ctx, &response, opts) + response, err := getPaginatedResults[User](ctx, c, "account/users", opts) if err != nil { return nil, err } - return response.Data, nil + return response, nil } // GetUser gets the user with the provided ID func (c *Client) GetUser(ctx context.Context, userID string) (*User, error) { - userID = url.PathEscape(userID) - e := fmt.Sprintf("account/users/%s", userID) - req := c.R(ctx).SetResult(&User{}) - r, err := coupleAPIErrors(req.Get(e)) + e := formatAPIPath("account/users/%s", userID) + response, err := doGETRequest[User](ctx, c, e) if err != nil { return nil, err } - return r.Result().(*User), nil + return response, nil } // CreateUser creates a User. The email address must be confirmed before the // User account can be accessed. func (c *Client) CreateUser(ctx context.Context, opts UserCreateOptions) (*User, error) { - body, err := json.Marshal(opts) - if err != nil { - return nil, err - } - e := "account/users" - req := c.R(ctx).SetResult(&User{}).SetBody(string(body)) - r, err := coupleAPIErrors(req.Post(e)) + response, err := doPOSTRequest[User](ctx, c, e, opts) if err != nil { return nil, err } - return r.Result().(*User), nil + return response, nil } // UpdateUser updates the User with the specified id func (c *Client) UpdateUser(ctx context.Context, userID string, opts UserUpdateOptions) (*User, error) { - body, err := json.Marshal(opts) - if err != nil { - return nil, err - } - - userID = url.PathEscape(userID) - e := fmt.Sprintf("account/users/%s", userID) - req := c.R(ctx).SetResult(&User{}).SetBody(string(body)) - r, err := coupleAPIErrors(req.Put(e)) + e := formatAPIPath("account/users/%s", userID) + response, err := doPUTRequest[User](ctx, c, e, opts) if err != nil { return nil, err } - return r.Result().(*User), nil + return response, nil } // DeleteUser deletes the User with the specified id func (c *Client) DeleteUser(ctx context.Context, userID string) error { - userID = url.PathEscape(userID) - e := fmt.Sprintf("account/users/%s", userID) - _, err := coupleAPIErrors(c.R(ctx).Delete(e)) + e := formatAPIPath("account/users/%s", userID) + err := doDELETERequest(ctx, c, e) return err } diff --git a/betas.go b/betas.go index 9cd84ad57..8f90220d9 100644 --- a/betas.go +++ b/betas.go @@ -3,11 +3,8 @@ package linodego import ( "context" "encoding/json" - "fmt" - "net/url" "time" - "github.com/go-resty/resty/v2" "github.com/linode/linodego/internal/parseabletime" ) @@ -32,17 +29,6 @@ type BetaProgram struct { MoreInfo string `json:"more_info"` } -// BetasPagedResponse represents a paginated Beta Programs API response -type BetasPagedResponse struct { - *PageOptions - Data []BetaProgram `json:"data"` -} - -// endpoint gets the endpoint URL for BetaProgram -func (BetasPagedResponse) endpoint(_ ...any) string { - return "/betas" -} - // UnmarshalJSON implements the json.Unmarshaler interface func (beta *BetaProgram) UnmarshalJSON(b []byte) error { type Mask BetaProgram @@ -65,35 +51,23 @@ func (beta *BetaProgram) UnmarshalJSON(b []byte) error { return nil } -func (resp *BetasPagedResponse) castResult(r *resty.Request, e string) (int, int, error) { - res, err := coupleAPIErrors(r.SetResult(BetasPagedResponse{}).Get(e)) - if err != nil { - return 0, 0, err - } - castedRes := res.Result().(*BetasPagedResponse) - resp.Data = append(resp.Data, castedRes.Data...) - return castedRes.Pages, castedRes.Results, nil -} - // ListBetaPrograms lists active beta programs func (c *Client) ListBetaPrograms(ctx context.Context, opts *ListOptions) ([]BetaProgram, error) { - response := BetasPagedResponse{} - err := c.listHelper(ctx, &response, opts) + response, err := getPaginatedResults[BetaProgram](ctx, c, "/betas", opts) if err != nil { return nil, err } - return response.Data, nil + + return response, nil } // GetBetaProgram gets the beta program's detail with the ID func (c *Client) GetBetaProgram(ctx context.Context, betaID string) (*BetaProgram, error) { - req := c.R(ctx).SetResult(&BetaProgram{}) - betaID = url.PathEscape(betaID) - b := fmt.Sprintf("betas/%s", betaID) - r, err := coupleAPIErrors(req.Get(b)) + e := formatAPIPath("betas/%s", betaID) + response, err := doGETRequest[BetaProgram](ctx, c, e) if err != nil { return nil, err } - return r.Result().(*BetaProgram), nil + return response, nil } diff --git a/databases.go b/databases.go index 50d752d51..c665da775 100644 --- a/databases.go +++ b/databases.go @@ -3,11 +3,8 @@ package linodego import ( "context" "encoding/json" - "fmt" - "net/url" "time" - "github.com/go-resty/resty/v2" "github.com/linode/linodego/internal/parseabletime" ) @@ -53,63 +50,6 @@ const ( DatabaseStatusBackingUp DatabaseStatus = "backing_up" ) -type DatabasesPagedResponse struct { - *PageOptions - Data []Database `json:"data"` -} - -func (DatabasesPagedResponse) endpoint(_ ...any) string { - return "databases/instances" -} - -func (resp *DatabasesPagedResponse) castResult(r *resty.Request, e string) (int, int, error) { - res, err := coupleAPIErrors(r.SetResult(DatabasesPagedResponse{}).Get(e)) - if err != nil { - return 0, 0, err - } - castedRes := res.Result().(*DatabasesPagedResponse) - resp.Data = append(resp.Data, castedRes.Data...) - return castedRes.Pages, castedRes.Results, nil -} - -type DatabaseEnginesPagedResponse struct { - *PageOptions - Data []DatabaseEngine `json:"data"` -} - -func (DatabaseEnginesPagedResponse) endpoint(_ ...any) string { - return "databases/engines" -} - -func (resp *DatabaseEnginesPagedResponse) castResult(r *resty.Request, e string) (int, int, error) { - res, err := coupleAPIErrors(r.SetResult(DatabaseEnginesPagedResponse{}).Get(e)) - if err != nil { - return 0, 0, err - } - castedRes := res.Result().(*DatabaseEnginesPagedResponse) - resp.Data = append(resp.Data, castedRes.Data...) - return castedRes.Pages, castedRes.Results, nil -} - -type DatabaseTypesPagedResponse struct { - *PageOptions - Data []DatabaseType `json:"data"` -} - -func (DatabaseTypesPagedResponse) endpoint(_ ...any) string { - return "databases/types" -} - -func (resp *DatabaseTypesPagedResponse) castResult(r *resty.Request, e string) (int, int, error) { - res, err := coupleAPIErrors(r.SetResult(DatabaseTypesPagedResponse{}).Get(e)) - if err != nil { - return 0, 0, err - } - castedRes := res.Result().(*DatabaseTypesPagedResponse) - resp.Data = append(resp.Data, castedRes.Data...) - return castedRes.Pages, castedRes.Results, nil -} - // A Database is a instance of Linode Managed Databases type Database struct { ID int `json:"id"` @@ -202,100 +142,52 @@ func (d *Database) UnmarshalJSON(b []byte) error { // ListDatabases lists all Database instances in Linode Managed Databases for the account func (c *Client) ListDatabases(ctx context.Context, opts *ListOptions) ([]Database, error) { - response := DatabasesPagedResponse{} - - err := c.listHelper(ctx, &response, opts) + response, err := getPaginatedResults[Database](ctx, c, "databases/instances", opts) if err != nil { return nil, err } - return response.Data, nil + return response, nil } // ListDatabaseEngines lists all Database Engines. This endpoint is cached by default. func (c *Client) ListDatabaseEngines(ctx context.Context, opts *ListOptions) ([]DatabaseEngine, error) { - response := DatabaseEnginesPagedResponse{} - - endpoint, err := generateListCacheURL(response.endpoint(), opts) - if err != nil { - return nil, err - } - - if result := c.getCachedResponse(endpoint); result != nil { - return result.([]DatabaseEngine), nil - } - - err = c.listHelper(ctx, &response, opts) + response, err := getPaginatedResults[DatabaseEngine](ctx, c, "databases/engines", opts) if err != nil { return nil, err } - c.addCachedResponse(endpoint, response.Data, &cacheExpiryTime) - - return response.Data, nil + return response, nil } // GetDatabaseEngine returns a specific Database Engine. This endpoint is cached by default. func (c *Client) GetDatabaseEngine(ctx context.Context, _ *ListOptions, engineID string) (*DatabaseEngine, error) { - engineID = url.PathEscape(engineID) - e := fmt.Sprintf("databases/engines/%s", engineID) - - if result := c.getCachedResponse(e); result != nil { - result := result.(DatabaseEngine) - return &result, nil - } - - req := c.R(ctx).SetResult(&DatabaseEngine{}) - r, err := coupleAPIErrors(req.Get(e)) + e := formatAPIPath("databases/engines/%s", engineID) + response, err := doGETRequest[DatabaseEngine](ctx, c, e) if err != nil { return nil, err } - c.addCachedResponse(e, r.Result(), &cacheExpiryTime) - - return r.Result().(*DatabaseEngine), nil + return response, nil } // ListDatabaseTypes lists all Types of Database provided in Linode Managed Databases. This endpoint is cached by default. func (c *Client) ListDatabaseTypes(ctx context.Context, opts *ListOptions) ([]DatabaseType, error) { - response := DatabaseTypesPagedResponse{} - - endpoint, err := generateListCacheURL(response.endpoint(), opts) - if err != nil { - return nil, err - } - - if result := c.getCachedResponse(endpoint); result != nil { - return result.([]DatabaseType), nil - } - - err = c.listHelper(ctx, &response, opts) + response, err := getPaginatedResults[DatabaseType](ctx, c, "databases/types", opts) if err != nil { return nil, err } - c.addCachedResponse(endpoint, response.Data, &cacheExpiryTime) - - return response.Data, nil + return response, nil } // GetDatabaseType returns a specific Database Type. This endpoint is cached by default. func (c *Client) GetDatabaseType(ctx context.Context, _ *ListOptions, typeID string) (*DatabaseType, error) { - typeID = url.PathEscape(typeID) - e := fmt.Sprintf("databases/types/%s", typeID) - - if result := c.getCachedResponse(e); result != nil { - result := result.(DatabaseType) - return &result, nil - } - - req := c.R(ctx).SetResult(&DatabaseType{}) - r, err := coupleAPIErrors(req.Get(e)) + e := formatAPIPath("databases/types/%s", typeID) + response, err := doGETRequest[DatabaseType](ctx, c, e) if err != nil { return nil, err } - c.addCachedResponse(e, r.Result(), &cacheExpiryTime) - - return r.Result().(*DatabaseType), nil + return response, nil } diff --git a/domain_records.go b/domain_records.go index fcb664d84..11e246d22 100644 --- a/domain_records.go +++ b/domain_records.go @@ -2,10 +2,6 @@ package linodego import ( "context" - "encoding/json" - "fmt" - - "github.com/go-resty/resty/v2" ) // DomainRecord represents a DomainRecord object @@ -83,86 +79,52 @@ func (d DomainRecord) GetUpdateOptions() (du DomainRecordUpdateOptions) { return } -// DomainRecordsPagedResponse represents a paginated DomainRecord API response -type DomainRecordsPagedResponse struct { - *PageOptions - Data []DomainRecord `json:"data"` -} - -// endpoint gets the endpoint URL for InstanceConfig -func (DomainRecordsPagedResponse) endpoint(ids ...any) string { - id, _ := ids[0].(int) - return fmt.Sprintf("domains/%d/records", id) -} - -func (resp *DomainRecordsPagedResponse) castResult(r *resty.Request, e string) (int, int, error) { - res, err := coupleAPIErrors(r.SetResult(DomainRecordsPagedResponse{}).Get(e)) - if err != nil { - return 0, 0, err - } - castedRes := res.Result().(*DomainRecordsPagedResponse) - resp.Data = append(resp.Data, castedRes.Data...) - return castedRes.Pages, castedRes.Results, nil -} - // ListDomainRecords lists DomainRecords func (c *Client) ListDomainRecords(ctx context.Context, domainID int, opts *ListOptions) ([]DomainRecord, error) { - response := DomainRecordsPagedResponse{} - err := c.listHelper(ctx, &response, opts, domainID) + response, err := getPaginatedResults[DomainRecord](ctx, c, formatAPIPath("domains/%d/records", domainID), opts) if err != nil { return nil, err } - return response.Data, nil + + return response, nil } // GetDomainRecord gets the domainrecord with the provided ID func (c *Client) GetDomainRecord(ctx context.Context, domainID int, recordID int) (*DomainRecord, error) { - req := c.R(ctx).SetResult(&DomainRecord{}) - e := fmt.Sprintf("domains/%d/records/%d", domainID, recordID) - r, err := coupleAPIErrors(req.Get(e)) + e := formatAPIPath("domains/%d/records/%d", domainID, recordID) + response, err := doGETRequest[DomainRecord](ctx, c, e) if err != nil { return nil, err } - return r.Result().(*DomainRecord), nil + + return response, nil } // CreateDomainRecord creates a DomainRecord func (c *Client) CreateDomainRecord(ctx context.Context, domainID int, opts DomainRecordCreateOptions) (*DomainRecord, error) { - body, err := json.Marshal(opts) - if err != nil { - return nil, err - } - - e := fmt.Sprintf("domains/%d/records", domainID) - req := c.R(ctx).SetResult(&DomainRecord{}).SetBody(string(body)) - r, err := coupleAPIErrors(req.Post(e)) + e := formatAPIPath("domains/%d/records", domainID) + response, err := doPOSTRequest[DomainRecord](ctx, c, e, opts) if err != nil { return nil, err } - return r.Result().(*DomainRecord), nil + return response, nil } // UpdateDomainRecord updates the DomainRecord with the specified id func (c *Client) UpdateDomainRecord(ctx context.Context, domainID int, recordID int, opts DomainRecordUpdateOptions) (*DomainRecord, error) { - body, err := json.Marshal(opts) - if err != nil { - return nil, err - } - - e := fmt.Sprintf("domains/%d/records/%d", domainID, recordID) - req := c.R(ctx).SetResult(&DomainRecord{}).SetBody(string(body)) - r, err := coupleAPIErrors(req.Put(e)) + e := formatAPIPath("domains/%d/records/%d", domainID, recordID) + response, err := doPUTRequest[DomainRecord](ctx, c, e, opts) if err != nil { return nil, err } - return r.Result().(*DomainRecord), nil + return response, nil } // DeleteDomainRecord deletes the DomainRecord with the specified id func (c *Client) DeleteDomainRecord(ctx context.Context, domainID int, recordID int) error { - e := fmt.Sprintf("domains/%d/records/%d", domainID, recordID) - _, err := coupleAPIErrors(c.R(ctx).Delete(e)) + e := formatAPIPath("domains/%d/records/%d", domainID, recordID) + err := doDELETERequest(ctx, c, e) return err } diff --git a/domains.go b/domains.go index eff796fa8..0bc05bdd2 100644 --- a/domains.go +++ b/domains.go @@ -2,10 +2,6 @@ package linodego import ( "context" - "encoding/json" - "fmt" - - "github.com/go-resty/resty/v2" ) // Domain represents a Domain object @@ -188,99 +184,63 @@ func (d Domain) GetUpdateOptions() (du DomainUpdateOptions) { return } -// DomainsPagedResponse represents a paginated Domain API response -type DomainsPagedResponse struct { - *PageOptions - Data []Domain `json:"data"` -} - -// endpoint gets the endpoint URL for Domain -func (DomainsPagedResponse) endpoint(_ ...any) string { - return "domains" -} - -func (resp *DomainsPagedResponse) castResult(r *resty.Request, e string) (int, int, error) { - res, err := coupleAPIErrors(r.SetResult(DomainsPagedResponse{}).Get(e)) - if err != nil { - return 0, 0, err - } - castedRes := res.Result().(*DomainsPagedResponse) - resp.Data = append(resp.Data, castedRes.Data...) - return castedRes.Pages, castedRes.Results, nil -} - // ListDomains lists Domains func (c *Client) ListDomains(ctx context.Context, opts *ListOptions) ([]Domain, error) { - response := DomainsPagedResponse{} - err := c.listHelper(ctx, &response, opts) + response, err := getPaginatedResults[Domain](ctx, c, "domains", opts) if err != nil { return nil, err } - return response.Data, nil + return response, nil } // GetDomain gets the domain with the provided ID func (c *Client) GetDomain(ctx context.Context, domainID int) (*Domain, error) { - req := c.R(ctx).SetResult(&Domain{}) - e := fmt.Sprintf("domains/%d", domainID) - r, err := coupleAPIErrors(req.Get(e)) + e := formatAPIPath("domains/%d", domainID) + response, err := doGETRequest[Domain](ctx, c, e) if err != nil { return nil, err } - return r.Result().(*Domain), nil + return response, nil } // CreateDomain creates a Domain func (c *Client) CreateDomain(ctx context.Context, opts DomainCreateOptions) (*Domain, error) { - body, err := json.Marshal(opts) - if err != nil { - return nil, err - } - - req := c.R(ctx).SetResult(&Domain{}).SetBody(string(body)) e := "domains" - r, err := coupleAPIErrors(req.Post(e)) + response, err := doPOSTRequest[Domain](ctx, c, e, opts) if err != nil { return nil, err } - return r.Result().(*Domain), nil + return response, nil } // UpdateDomain updates the Domain with the specified id func (c *Client) UpdateDomain(ctx context.Context, domainID int, opts DomainUpdateOptions) (*Domain, error) { - body, err := json.Marshal(opts) - if err != nil { - return nil, err - } - - e := fmt.Sprintf("domains/%d", domainID) - req := c.R(ctx).SetResult(&Domain{}).SetBody(string(body)) - r, err := coupleAPIErrors(req.Put(e)) + e := formatAPIPath("domains/%d", domainID) + response, err := doPUTRequest[Domain](ctx, c, e, opts) if err != nil { return nil, err } - return r.Result().(*Domain), nil + return response, nil } // DeleteDomain deletes the Domain with the specified id func (c *Client) DeleteDomain(ctx context.Context, domainID int) error { - e := fmt.Sprintf("domains/%d", domainID) - _, err := coupleAPIErrors(c.R(ctx).Delete(e)) + e := formatAPIPath("domains/%d", domainID) + err := doDELETERequest(ctx, c, e) return err } // GetDomainZoneFile gets the zone file for the last rendered zone for the specified domain. func (c *Client) GetDomainZoneFile(ctx context.Context, domainID int) (*DomainZoneFile, error) { - e := fmt.Sprintf("domains/%d/zone-file", domainID) - req := c.R(ctx).SetResult(&DomainZoneFile{}) - resp, err := coupleAPIErrors(req.Get(e)) + e := formatAPIPath("domains/%d/zone-file", domainID) + response, err := doGETRequest[DomainZoneFile](ctx, c, e) if err != nil { return nil, err } - return resp.Result().(*DomainZoneFile), nil + return response, nil } diff --git a/firewall_devices.go b/firewall_devices.go index 901cf43d8..91896d288 100644 --- a/firewall_devices.go +++ b/firewall_devices.go @@ -3,10 +3,8 @@ package linodego import ( "context" "encoding/json" - "fmt" "time" - "github.com/go-resty/resty/v2" "github.com/linode/linodego/internal/parseabletime" ) @@ -62,68 +60,41 @@ type FirewallDeviceEntity struct { URL string `json:"url"` } -// FirewallDevicesPagedResponse represents a Linode API response for FirewallDevices -type FirewallDevicesPagedResponse struct { - *PageOptions - Data []FirewallDevice `json:"data"` -} - -// endpoint gets the endpoint URL for FirewallDevices of a given Firewall -func (FirewallDevicesPagedResponse) endpoint(ids ...any) string { - id, _ := ids[0].(int) - return fmt.Sprintf("networking/firewalls/%d/devices", id) -} - -func (resp *FirewallDevicesPagedResponse) castResult(r *resty.Request, e string) (int, int, error) { - res, err := coupleAPIErrors(r.SetResult(FirewallDevicesPagedResponse{}).Get(e)) - if err != nil { - return 0, 0, err - } - castedRes := res.Result().(*FirewallDevicesPagedResponse) - resp.Data = append(resp.Data, castedRes.Data...) - return castedRes.Pages, castedRes.Results, nil -} - // ListFirewallDevices get devices associated with a given Firewall func (c *Client) ListFirewallDevices(ctx context.Context, firewallID int, opts *ListOptions) ([]FirewallDevice, error) { - response := FirewallDevicesPagedResponse{} - err := c.listHelper(ctx, &response, opts, firewallID) + response, err := getPaginatedResults[FirewallDevice](ctx, c, formatAPIPath("networking/firewalls/%d/devices", firewallID), opts) if err != nil { return nil, err } - return response.Data, nil + + return response, nil } // GetFirewallDevice gets a FirewallDevice given an ID func (c *Client) GetFirewallDevice(ctx context.Context, firewallID, deviceID int) (*FirewallDevice, error) { - e := fmt.Sprintf("networking/firewalls/%d/devices/%d", firewallID, deviceID) - req := c.R(ctx).SetResult(&FirewallDevice{}) - r, err := coupleAPIErrors(req.Get(e)) + e := formatAPIPath("networking/firewalls/%d/devices/%d", firewallID, deviceID) + response, err := doGETRequest[FirewallDevice](ctx, c, e) if err != nil { return nil, err } - return r.Result().(*FirewallDevice), nil + + return response, nil } // AddFirewallDevice associates a Device with a given Firewall func (c *Client) CreateFirewallDevice(ctx context.Context, firewallID int, opts FirewallDeviceCreateOptions) (*FirewallDevice, error) { - body, err := json.Marshal(opts) + e := formatAPIPath("networking/firewalls/%d/devices", firewallID) + response, err := doPOSTRequest[FirewallDevice](ctx, c, e, opts) if err != nil { return nil, err } - e := fmt.Sprintf("networking/firewalls/%d/devices", firewallID) - req := c.R(ctx).SetResult(&FirewallDevice{}).SetBody(string(body)) - r, err := coupleAPIErrors(req.Post(e)) - if err != nil { - return nil, err - } - return r.Result().(*FirewallDevice), nil + return response, nil } // DeleteFirewallDevice disassociates a Device with a given Firewall func (c *Client) DeleteFirewallDevice(ctx context.Context, firewallID, deviceID int) error { - e := fmt.Sprintf("networking/firewalls/%d/devices/%d", firewallID, deviceID) - _, err := coupleAPIErrors(c.R(ctx).Delete(e)) + e := formatAPIPath("networking/firewalls/%d/devices/%d", firewallID, deviceID) + err := doDELETERequest(ctx, c, e) return err } diff --git a/test/integration/fixtures/ExampleListUsers.yaml b/test/integration/fixtures/ExampleListUsers.yaml index 28971cb36..18289558a 100644 --- a/test/integration/fixtures/ExampleListUsers.yaml +++ b/test/integration/fixtures/ExampleListUsers.yaml @@ -11,15 +11,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/account/users + url: https://api.linode.com/v4beta/account/users?page=1 method: GET response: - body: '{"data": [{"username": "youjungk01", "email": "ykim@akamai.com", "restricted": - false, "ssh_keys": ["tf_test_authorized_keys", "my ssh key", "sshkeyinternal", - "tf_test-6848912169107459461-1", "tf_test-6848912169107459461-0", "id_rsa", - "test_id_rsa"], "tfa_enabled": true, "verified_phone_number": null, "password_created": - null, "last_login": {"login_datetime": "2018-01-02T03:04:05", "status": "successful"}, - "user_type": "default"}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [{"username": "ErikZilber", "email": "ezilber@akamai.com", "restricted": + false, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number": "+11234567890", + "password_created": "2018-01-02T03:04:05", "last_login": {"login_datetime": + "2018-01-02T03:04:05", "status": "successful"}, "user_type": "default"}], "page": + 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -32,22 +31,18 @@ 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: - - "471" + - private, max-age=0, s-maxage=0, no-cache, no-store + - private, max-age=60, s-maxage=60 Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Expires: - - Fri, 31 May 2024 17:04:35 GMT - Pragma: - - no-cache + Server: + - nginx Strict-Transport-Security: - max-age=31536000 Vary: + - Accept-Encoding - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: @@ -58,10 +53,7 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - "400" X-Xss-Protection: diff --git a/test/integration/fixtures/TestBetaProgram_Get.yaml b/test/integration/fixtures/TestBetaProgram_Get.yaml index f77a1c7fb..ba3de069a 100644 --- a/test/integration/fixtures/TestBetaProgram_Get.yaml +++ b/test/integration/fixtures/TestBetaProgram_Get.yaml @@ -11,23 +11,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/betas + url: https://api.linode.com/v4beta/betas?page=1 method: GET response: - body: '{"data": [{"id": "global_load_balancer_beta", "label": "Akamai Global Load - Balancer Pre-Registration", "description": "The Akamai Global Load Balancer - (AGLB) is a layer 4 and 7 load balancer that distributes traffic based on performance, - weight, and content (HTTP headers, query strings, etc.). The AGLB is a multi-region, - multicloud, independent of Akamai Delivery, and built for East-West and North-South - traffic. Key features include multi-region load balancing and method selection. - Beta for this product is coming soon\u2013 sign up to be contacted first when - AGLB is available.\r\n\r\nPlease note: Akamai Global Load Balancer is not currently - available in beta testing. By signing up to participate in this beta when it - becomes available, you consent to be subscribed to receive emails from Akamai - cloud computing services marketing and be contacted via email when the beta - period begins.", "started": "2018-01-02T03:04:05", "ended": null, "greenlight_only": - false, "more_info": "https://www.linode.com/green-light/"}], "page": 1, "pages": - 1, "results": 1}' + body: '{"data": [{"id": "future_open", "label": "future open beta", "description": + "An expired closed beta", "started": "2018-01-02T03:04:05", "ended": null, "greenlight_only": + true, "more_info": "https://linode.com"}, {"id": "active_closed", "label": "active + closed beta", "description": "An active closed beta", "started": "2018-01-02T03:04:05", + "ended": null, "greenlight_only": true, "more_info": "a link with even more + info"}, {"id": "limited", "label": "limited beta", "description": "An active + limited beta", "started": "2018-01-02T03:04:05", "ended": null, "greenlight_only": + false, "more_info": "a link with even more info"}], "page": 1, "pages": 1, "results": + 3}' headers: Access-Control-Allow-Credentials: - "true" @@ -40,23 +35,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 + - private, max-age=0, s-maxage=0, no-cache, no-store + - private, max-age=60, s-maxage=60 Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Expires: - - Wed, 20 Mar 2024 20:58:58 GMT - Pragma: - - no-cache + Server: + - nginx Strict-Transport-Security: - max-age=31536000 Vary: + - Accept-Encoding - Authorization, X-Filter - Authorization, X-Filter - - Accept-Encoding X-Accepted-Oauth-Scopes: - '*' X-Content-Type-Options: @@ -83,22 +75,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/betas/global_load_balancer_beta + url: https://api.linode.com/v4beta/betas/future_open method: GET response: - body: '{"id": "global_load_balancer_beta", "label": "Akamai Global Load Balancer - Pre-Registration", "description": "The Akamai Global Load Balancer (AGLB) is - a layer 4 and 7 load balancer that distributes traffic based on performance, - weight, and content (HTTP headers, query strings, etc.). The AGLB is a multi-region, - multicloud, independent of Akamai Delivery, and built for East-West and North-South - traffic. Key features include multi-region load balancing and method selection. - Beta for this product is coming soon\u2013 sign up to be contacted first when - AGLB is available.\r\n\r\nPlease note: Akamai Global Load Balancer is not currently - available in beta testing. By signing up to participate in this beta when it - becomes available, you consent to be subscribed to receive emails from Akamai - cloud computing services marketing and be contacted via email when the beta - period begins.", "started": "2018-01-02T03:04:05", "ended": null, "greenlight_only": - false, "more_info": "https://www.linode.com/green-light/"}' + body: '{"id": "future_open", "label": "future open beta", "description": "An expired + closed beta", "started": "2018-01-02T03:04:05", "ended": null, "greenlight_only": + true, "more_info": "https://linode.com"}' headers: Access-Control-Allow-Credentials: - "true" @@ -111,23 +93,21 @@ 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 + - private, max-age=0, s-maxage=0, no-cache, no-store + - private, max-age=60, s-maxage=60 + Content-Length: + - "200" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Expires: - - Wed, 20 Mar 2024 20:58:59 GMT - Pragma: - - no-cache + Server: + - nginx Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - Authorization, X-Filter - - Accept-Encoding X-Accepted-Oauth-Scopes: - '*' X-Content-Type-Options: diff --git a/test/integration/fixtures/TestBetaPrograms_List.yaml b/test/integration/fixtures/TestBetaPrograms_List.yaml index a69b44fb0..0737ace54 100644 --- a/test/integration/fixtures/TestBetaPrograms_List.yaml +++ b/test/integration/fixtures/TestBetaPrograms_List.yaml @@ -11,15 +11,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/betas + url: https://api.linode.com/v4beta/betas?page=1 method: GET response: - body: '{"data": [{"id": "active_closed", "label": "active closed beta", - "description": "An active closed beta", "started": "2023-07-19T15:23:43", - "ended": null, "greenlight_only": true, "more_info": "a link with even more info"}, - {"id": "limited", "label": "limited beta", "description": "An active limited beta", - "started": "2023-07-19T15:23:43", "ended": null, "greenlight_only": false, - "more_info": "a link with even more info"}], "page": 1, "pages": 1, "results": 2}' + body: '{"data": [{"id": "future_open", "label": "future open beta", "description": + "An expired closed beta", "started": "2018-01-02T03:04:05", "ended": null, "greenlight_only": + true, "more_info": "https://linode.com"}, {"id": "active_closed", "label": "active + closed beta", "description": "An active closed beta", "started": "2018-01-02T03:04:05", + "ended": null, "greenlight_only": true, "more_info": "a link with even more + info"}, {"id": "limited", "label": "limited beta", "description": "An active + limited beta", "started": "2018-01-02T03:04:05", "ended": null, "greenlight_only": + false, "more_info": "a link with even more info"}], "page": 1, "pages": 1, "results": + 3}' headers: Access-Control-Allow-Credentials: - "true" @@ -56,7 +59,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "1200" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK diff --git a/test/integration/fixtures/TestDatabase_Engine.yaml b/test/integration/fixtures/TestDatabase_Engine.yaml index 4c843484a..627f643a3 100644 --- a/test/integration/fixtures/TestDatabase_Engine.yaml +++ b/test/integration/fixtures/TestDatabase_Engine.yaml @@ -11,16 +11,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/engines + url: https://api.linode.com/v4beta/databases/engines?page=1 method: GET response: - body: '{"data": [{"id": "mysql/5.7.39", "engine": "mysql", "version": "5.7.39"}, - {"id": "mysql/8.0.30", "engine": "mysql", "version": "8.0.30"}, {"id": "postgresql/10.23", - "engine": "postgresql", "version": "10.23"}, {"id": "postgresql/11.17", "engine": - "postgresql", "version": "11.17"}, {"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": 7}' + 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" @@ -33,16 +31,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "531" + - "323" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:45:40 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -58,7 +59,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -74,10 +75,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/engines/mysql%2F5.7.39 + url: https://api.linode.com/v4beta/databases/engines/mysql%2F8.0.30 method: GET response: - body: '{"id": "mysql/5.7.39", "engine": "mysql", "version": "5.7.39"}' + body: '{"id": "mysql/8.0.30", "engine": "mysql", "version": "8.0.30"}' headers: Access-Control-Allow-Credentials: - "true" @@ -90,16 +91,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "62" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:45:40 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -115,7 +119,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK diff --git a/test/integration/fixtures/TestDatabase_List.yaml b/test/integration/fixtures/TestDatabase_List.yaml index debfb4011..660c1bab7 100644 --- a/test/integration/fixtures/TestDatabase_List.yaml +++ b/test/integration/fixtures/TestDatabase_List.yaml @@ -15,176 +15,243 @@ interactions: method: GET response: body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities": - ["Linodes", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud - Firewall", "Vlans", "Block Storage Migrations", "Managed Databases"], "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, + ["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"}}, {"id": "ca-central", "label": "Toronto, CA", - "country": "ca", "capabilities": ["Linodes", "NodeBalancers", "Block Storage", - "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed - Databases"], "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"}, "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"}}, {"id": "ap-southeast", - "label": "Sydney, AU", "country": "au", "capabilities": ["Linodes", "NodeBalancers", - "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", - "Managed Databases"], "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"}, "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, 1234::5678"}}, - {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities": - ["Linodes", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", - "Cloud Firewall", "Vlans", "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"}}, - {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities": ["Linodes", - "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "Managed Databases", "Premium Plans"], "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"}}, - {"id": "fr-par", "label": "Paris, FR", "country": "fr", "capabilities": ["Linodes", - "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "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"}}, - {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities": ["Linodes", - "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "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"}, "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"}}, - {"id": "br-gru", "label": "Sao Paulo, BR", "country": "br", "capabilities": - ["Linodes", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", - "Cloud Firewall", "Vlans", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": - "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, - 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "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, 1234::5678, 1234::5678"}}, - {"id": "nl-ams", "label": "Amsterdam, NL", "country": "nl", "capabilities": - ["Linodes", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", - "Cloud Firewall", "Vlans", "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", + 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"}}, {"id": "se-sto", "label": "Stockholm, SE", - "country": "se", "capabilities": ["Linodes", "NodeBalancers", "Block Storage", - "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "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"}, "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, 1234::5678"}}, {"id": "in-maa", - "label": "Chennai, IN", "country": "in", "capabilities": ["Linodes", "NodeBalancers", + 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", - "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"}}, - {"id": "jp-osa", "label": "Osaka, JP", "country": "jp", "capabilities": ["Linodes", - "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "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, + "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": + 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, 1234::5678, 1234::5678"}}, - {"id": "it-mil", "label": "Milan, IT", "country": "it", "capabilities": ["Linodes", - "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "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"}, "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, 1234::5678, 1234::5678"}}, - {"id": "us-mia", "label": "Miami, FL", "country": "us", "capabilities": ["Linodes", - "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "Premium Plans"], "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"}, "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, 1234::5678, 1234::5678"}}, - {"id": "id-cgk", "label": "Jakarta, ID", "country": "id", "capabilities": ["Linodes", - "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "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"}, "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, 1234::5678, 1234::5678"}}, - {"id": "us-lax", "label": "Los Angeles, CA", "country": "us", "capabilities": - ["Linodes", "NodeBalancers", "Block Storage", "Object Storage", "Cloud Firewall", - "Vlans", "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"}, "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, 1234::5678, 1234::5678"}}, - {"id": "us-central", "label": "Dallas, TX", "country": "us", "capabilities": - ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", - "Block Storage Migrations", "Managed Databases"], "status": "ok", "resolvers": + 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"}}, {"id": "us-west", - "label": "Fremont, CA", "country": "us", "capabilities": ["Linodes", "NodeBalancers", - "Block Storage", "Kubernetes", "Cloud Firewall", "Block Storage Migrations", - "Managed Databases"], "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"}}, {"id": "us-southeast", "label": "Atlanta, GA", - "country": "us", "capabilities": ["Linodes", "NodeBalancers", "Block Storage", + 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"], "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, + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5, + 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, - 1234::5678, 1234::5678, 1234::5678"}}, {"id": "us-east", "label": "Newark, - NJ", "country": "us", "capabilities": ["Linodes", "NodeBalancers", "Block Storage", - "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Bare Metal", - "Vlans", "Block Storage Migrations", "Managed Databases"], "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"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label": + "Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", + "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "status": + "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5, 50.116.58.5, + 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4, 207.192.69.5", + "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "eu-west", "label": "London, UK", "country": "gb", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5, + 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20, + 109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country": + "sg", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "139.162.11.5, 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, + 139.162.21.5, 139.162.27.5, 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, - 1234::5678, 1234::5678, 1234::5678, 1234::5678"}}, {"id": "eu-west", - "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "NodeBalancers", - "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", - "Managed Databases"], "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"}}, - {"id": "ap-south", "label": "Singapore, SG", "country": "sg", "capabilities": - ["Linodes", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", - "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed - Databases"], "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"}}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", - "capabilities": ["Linodes", "NodeBalancers", "Block Storage", "Object Storage", - "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", - "Managed Databases"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5, + 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"}}, {"id": "ap-northeast", "label": "Tokyo, JP", - "country": "jp", "capabilities": ["Linodes", "NodeBalancers", "Block Storage", - "Kubernetes", "Cloud Firewall", "Block Storage Migrations", "Managed Databases"], - "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"}}], - "page": 1, "pages": 1, "results": 24}' + 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}' headers: Access-Control-Allow-Credentials: - "true" @@ -197,19 +264,23 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=900 - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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 + - Accept-Encoding X-Accepted-Oauth-Scopes: - '*' X-Content-Type-Options: @@ -220,7 +291,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -239,13 +310,14 @@ interactions: url: https://api.linode.com/v4beta/databases/postgresql/instances method: POST response: - body: '{"id": 28215, "label": "go-postgres-testing-def", "type": "g6-nanode-1", + body: '{"id": 133345, "label": "go-postgres-testing-def", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "provisioning", - "encrypted": false, "allow_list": ["203.0.113.1", "192.0.1.0/24"], "cluster_size": - 3, "hosts": {"primary": null, "secondary": null}, "ssl_connection": false, "replication_type": - "asynch", "replication_commit_type": "local", "port": 5432, "updates": {"frequency": - "weekly", "duration": 3, "hour_of_day": 0, "day_of_week": null, "week_of_month": - null}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "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"}' headers: Access-Control-Allow-Credentials: - "true" @@ -258,15 +330,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "581" + - "652" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:45:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -281,7 +357,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -298,15 +374,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database"}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -320,16 +396,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:45:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -345,7 +424,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -362,15 +441,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -384,16 +463,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:46:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -409,7 +491,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -426,15 +508,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -448,16 +530,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:46:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -473,7 +558,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -490,15 +575,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -512,16 +597,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:46:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -537,7 +625,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -554,15 +642,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -576,16 +664,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:46:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -601,7 +692,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -618,15 +709,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -640,16 +731,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:47:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -665,7 +759,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -682,15 +776,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -704,16 +798,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:47:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -729,7 +826,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -746,15 +843,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -768,16 +865,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:47:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -793,7 +893,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -810,15 +910,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -832,16 +932,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:47:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -857,7 +960,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -874,15 +977,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -896,16 +999,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:48:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -921,7 +1027,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -938,15 +1044,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -960,16 +1066,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:48:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -985,7 +1094,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1002,15 +1111,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1024,16 +1133,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:48:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1049,7 +1161,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1066,15 +1178,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1088,16 +1200,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:48:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1113,7 +1228,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1130,15 +1245,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1152,16 +1267,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:49:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1177,7 +1295,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1194,15 +1312,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1216,16 +1334,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:49:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1241,7 +1362,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1258,15 +1379,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1280,16 +1401,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:49:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1305,7 +1429,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1322,15 +1446,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1344,16 +1468,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:49:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1369,7 +1496,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1386,15 +1513,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1408,16 +1535,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:50:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1433,7 +1563,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1450,15 +1580,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1472,16 +1602,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:50:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1497,7 +1630,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1514,15 +1647,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1536,16 +1669,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:50:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1561,7 +1697,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1578,15 +1714,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1600,16 +1736,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:50:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1625,7 +1764,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1642,15 +1781,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1664,16 +1803,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:51:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1689,7 +1831,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1706,15 +1848,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1728,16 +1870,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:51:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1753,7 +1898,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1770,15 +1915,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1792,16 +1937,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:51:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1817,7 +1965,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1834,15 +1982,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1856,16 +2004,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:51:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1881,7 +2032,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1898,15 +2049,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1920,16 +2071,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:52:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1945,7 +2099,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1962,15 +2116,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1984,16 +2138,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:52:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2009,7 +2166,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2026,15 +2183,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2048,16 +2205,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:52:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2073,7 +2233,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2090,15 +2250,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2112,16 +2272,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:52:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2137,7 +2300,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2154,15 +2317,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2176,16 +2339,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:53:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2201,7 +2367,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2218,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":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2240,16 +2406,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:53:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2265,7 +2434,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2282,15 +2451,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2304,16 +2473,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:53:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2329,7 +2501,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2346,15 +2518,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2368,16 +2540,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:53:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2393,7 +2568,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2410,15 +2585,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2432,16 +2607,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:54:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2457,7 +2635,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2474,15 +2652,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2496,16 +2674,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:54:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2521,7 +2702,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2538,15 +2719,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2560,16 +2741,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:54:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2585,7 +2769,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2602,15 +2786,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2624,16 +2808,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:54:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2649,7 +2836,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2666,15 +2853,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2688,16 +2875,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:55:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2713,7 +2903,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2730,15 +2920,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2752,16 +2942,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:55:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2777,7 +2970,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2794,15 +2987,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2816,16 +3009,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:55:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2841,7 +3037,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2858,15 +3054,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2880,16 +3076,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:55:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2905,7 +3104,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2922,15 +3121,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2944,16 +3143,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:56:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2969,7 +3171,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2986,15 +3188,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3008,16 +3210,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:56:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3033,7 +3238,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3050,15 +3255,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3072,16 +3277,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:56:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3097,7 +3305,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3114,15 +3322,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3136,16 +3344,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:56:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3161,7 +3372,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3178,15 +3389,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3200,16 +3411,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:57:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3225,7 +3439,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3242,15 +3456,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3264,16 +3478,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:57:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3289,7 +3506,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3306,15 +3523,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3328,16 +3545,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:57:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3353,7 +3573,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3370,15 +3590,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3392,16 +3612,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:57:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3417,7 +3640,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3434,15 +3657,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3456,16 +3679,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:58:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3481,7 +3707,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3498,15 +3724,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3520,16 +3746,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:58:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3545,7 +3774,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3562,15 +3791,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3584,16 +3813,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:58:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3609,7 +3841,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3626,15 +3858,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3648,16 +3880,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:58:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3673,7 +3908,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3690,15 +3925,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3712,16 +3947,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:59:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3737,7 +3975,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3754,15 +3992,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3776,16 +4014,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:59:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3801,7 +4042,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3818,15 +4059,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3840,16 +4081,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:59:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3865,7 +4109,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3882,15 +4126,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3904,16 +4148,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:59:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3929,7 +4176,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3946,15 +4193,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3968,16 +4215,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:00:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3993,7 +4243,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4010,15 +4260,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4032,16 +4282,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:00:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4057,7 +4310,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4074,15 +4327,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4096,16 +4349,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:00:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4121,7 +4377,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4138,15 +4394,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4160,16 +4416,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:00:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4185,7 +4444,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4202,15 +4461,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4224,16 +4483,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:01:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4249,7 +4511,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4266,15 +4528,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4288,16 +4550,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:01:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4313,7 +4578,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4330,15 +4595,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4352,16 +4617,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:01:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4377,7 +4645,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4394,15 +4662,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4416,16 +4684,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:01:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4441,7 +4712,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4458,15 +4729,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4480,16 +4751,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:02:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4505,7 +4779,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4522,15 +4796,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4544,16 +4818,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:02:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4569,7 +4846,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4586,15 +4863,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4608,16 +4885,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:02:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4633,7 +4913,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4650,15 +4930,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4672,16 +4952,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:02:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4697,7 +4980,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4714,15 +4997,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4736,16 +5019,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:03:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4761,7 +5047,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4778,15 +5064,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4800,16 +5086,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:03:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4825,7 +5114,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4842,15 +5131,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4864,16 +5153,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:03:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4889,7 +5181,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4906,15 +5198,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4928,16 +5220,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:03:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4953,7 +5248,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4970,15 +5265,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4992,16 +5287,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:04:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5017,7 +5315,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5034,15 +5332,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5056,16 +5354,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:04:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5081,7 +5382,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5098,15 +5399,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5120,16 +5421,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:04:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5145,7 +5449,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5162,15 +5466,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5184,16 +5488,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:04:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5209,7 +5516,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5226,15 +5533,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5248,16 +5555,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:05:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5273,7 +5583,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5290,15 +5600,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5312,16 +5622,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:05:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5337,7 +5650,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5354,15 +5667,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5376,16 +5689,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:05:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5401,7 +5717,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5418,15 +5734,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5440,16 +5756,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:05:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5465,7 +5784,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5482,15 +5801,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5504,16 +5823,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:06:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5529,7 +5851,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5546,15 +5868,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5568,16 +5890,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:06:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5593,7 +5918,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5610,15 +5935,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5632,16 +5957,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:06:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5657,7 +5985,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5674,15 +6002,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5696,16 +6024,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:06:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5721,7 +6052,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5738,15 +6069,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5760,16 +6091,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:07:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5785,7 +6119,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5802,15 +6136,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5824,16 +6158,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:07:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5849,7 +6186,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5866,15 +6203,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5888,16 +6225,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:07:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5913,7 +6253,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5930,15 +6270,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5952,16 +6292,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:07:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5977,7 +6320,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5994,15 +6337,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6016,16 +6359,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:08:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6041,7 +6387,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6058,15 +6404,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6080,16 +6426,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:08:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6105,7 +6454,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6122,15 +6471,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6144,16 +6493,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:08:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6169,7 +6521,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6186,15 +6538,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6208,16 +6560,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:08:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6233,7 +6588,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6250,15 +6605,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6272,16 +6627,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:09:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6297,7 +6655,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6314,15 +6672,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6336,16 +6694,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:09:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6361,7 +6722,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6378,15 +6739,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6400,16 +6761,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:09:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6425,7 +6789,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6442,15 +6806,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6464,16 +6828,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:09:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6489,7 +6856,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6506,15 +6873,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6528,16 +6895,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:10:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6553,7 +6923,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6570,15 +6940,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6592,16 +6962,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:10:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6617,7 +6990,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6634,15 +7007,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6656,16 +7029,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:10:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6681,7 +7057,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6698,15 +7074,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6720,16 +7096,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:10:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6745,7 +7124,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6762,15 +7141,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6784,16 +7163,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:11:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6809,7 +7191,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6826,15 +7208,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6848,16 +7230,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:11:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6873,7 +7258,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6890,15 +7275,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6912,16 +7297,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:11:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6937,7 +7325,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6954,15 +7342,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6976,16 +7364,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:11:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7001,7 +7392,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7018,15 +7409,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7040,16 +7431,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:12:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7065,7 +7459,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7082,15 +7476,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7104,16 +7498,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:12:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7129,7 +7526,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7146,15 +7543,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7168,16 +7565,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:12:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7193,7 +7593,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7210,15 +7610,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7232,16 +7632,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:12:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7257,7 +7660,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7274,15 +7677,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7296,16 +7699,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:13:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7321,7 +7727,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7338,15 +7744,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7360,16 +7766,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:13:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7385,7 +7794,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7402,15 +7811,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7424,16 +7833,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:13:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7449,7 +7861,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7466,15 +7878,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7488,16 +7900,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:13:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7513,7 +7928,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7530,15 +7945,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7552,16 +7967,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:14:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7577,7 +7995,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7594,15 +8012,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7616,16 +8034,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:14:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7641,7 +8062,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7658,15 +8079,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7680,16 +8101,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:14:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7705,7 +8129,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7722,15 +8146,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7744,16 +8168,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:14:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7769,7 +8196,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7786,15 +8213,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7808,16 +8235,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:15:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7833,7 +8263,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7850,15 +8280,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7872,16 +8302,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:15:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7897,7 +8330,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7914,15 +8347,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7936,16 +8369,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:15:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7961,7 +8397,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7978,15 +8414,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -8000,16 +8436,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:15:56 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8025,7 +8464,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8042,15 +8481,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -8064,16 +8503,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:16:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8089,7 +8531,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8106,15 +8548,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -8128,16 +8570,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:16:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8153,7 +8598,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8170,15 +8615,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -8192,16 +8637,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:16:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8217,7 +8665,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8234,15 +8682,216 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-03T07:23:50"},"entity.id":28215,"entity.type":"database","id":{"+gte":554719042}}' + - '{"+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": 554719042, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, - "duration": 1871, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28215, "type": "database", "url": - "/v4/databases/postgresql/instances/28215"}, "status": "finished", "secondary_entity": + 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: @@ -8256,16 +8905,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "459" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:17:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8281,7 +8933,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8297,24 +8949,84 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/instances + X-Filter: + - '{"+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": 23355, "label": "tf_test-8585210487497797453", "type": - "g6-nanode-1", "engine": "mysql", "version": "5.7.39", "region": "us-iad", "status": - "provisioning", "encrypted": false, "allow_list": [], "cluster_size": 1, "hosts": - {"primary": null, "secondary": null}, "port": 3306, "updates": {"frequency": - "weekly", "duration": 3, "hour_of_day": 0, "day_of_week": null, "week_of_month": - null}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "instance_uri": - "/v4/databases/mysql/instances/23355"}, {"id": 28215, "label": "go-postgres-testing-def", - "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": - "ap-west", "status": "active", "encrypted": false, "allow_list": ["203.0.113.1", - "192.0.1.0/24"], "cluster_size": 3, "hosts": {"primary": "lin-28215-11370-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28215-11370-pgsql-primary-private.servers.linodedb.net"}, - "port": 5432, "updates": {"frequency": "weekly", "duration": 3, "hour_of_day": - 1, "day_of_week": 7, "week_of_month": null}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05", "instance_uri": "/v4/databases/postgresql/instances/28215"}], - "page": 1, "pages": 1, "results": 2}' + 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" @@ -8327,14 +9039,3841 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-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 - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:32:11 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8350,7 +12889,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8366,7 +12905,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28215 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133345 method: DELETE response: body: '{}' @@ -8382,15 +12921,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "2" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:32:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8405,7 +12948,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" 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 f4f2d432b..040f1c2b0 100644 --- a/test/integration/fixtures/TestDatabase_MySQL_Suite.yaml +++ b/test/integration/fixtures/TestDatabase_MySQL_Suite.yaml @@ -15,176 +15,243 @@ interactions: method: GET response: body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities": - ["Linodes", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud - Firewall", "Vlans", "Block Storage Migrations", "Managed Databases"], "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, + ["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"}}, {"id": "ca-central", "label": "Toronto, CA", - "country": "ca", "capabilities": ["Linodes", "NodeBalancers", "Block Storage", - "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed - Databases"], "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"}, "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"}}, {"id": "ap-southeast", - "label": "Sydney, AU", "country": "au", "capabilities": ["Linodes", "NodeBalancers", - "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", - "Managed Databases"], "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"}, "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, 1234::5678"}}, - {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities": - ["Linodes", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", - "Cloud Firewall", "Vlans", "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"}}, - {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities": ["Linodes", - "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "Managed Databases", "Premium Plans"], "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"}}, - {"id": "fr-par", "label": "Paris, FR", "country": "fr", "capabilities": ["Linodes", - "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "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"}}, - {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities": ["Linodes", - "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "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"}, "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"}}, - {"id": "br-gru", "label": "Sao Paulo, BR", "country": "br", "capabilities": - ["Linodes", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", - "Cloud Firewall", "Vlans", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": - "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, - 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "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, 1234::5678, 1234::5678"}}, - {"id": "nl-ams", "label": "Amsterdam, NL", "country": "nl", "capabilities": - ["Linodes", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", - "Cloud Firewall", "Vlans", "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", + 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"}}, {"id": "se-sto", "label": "Stockholm, SE", - "country": "se", "capabilities": ["Linodes", "NodeBalancers", "Block Storage", - "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "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"}, "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, 1234::5678"}}, {"id": "in-maa", - "label": "Chennai, IN", "country": "in", "capabilities": ["Linodes", "NodeBalancers", + 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", - "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"}}, - {"id": "jp-osa", "label": "Osaka, JP", "country": "jp", "capabilities": ["Linodes", - "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "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, + "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": + 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, 1234::5678, 1234::5678"}}, - {"id": "it-mil", "label": "Milan, IT", "country": "it", "capabilities": ["Linodes", - "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "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"}, "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, 1234::5678, 1234::5678"}}, - {"id": "us-mia", "label": "Miami, FL", "country": "us", "capabilities": ["Linodes", - "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "Premium Plans"], "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"}, "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, 1234::5678, 1234::5678"}}, - {"id": "id-cgk", "label": "Jakarta, ID", "country": "id", "capabilities": ["Linodes", - "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "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"}, "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, 1234::5678, 1234::5678"}}, - {"id": "us-lax", "label": "Los Angeles, CA", "country": "us", "capabilities": - ["Linodes", "NodeBalancers", "Block Storage", "Object Storage", "Cloud Firewall", - "Vlans", "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"}, "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, 1234::5678, 1234::5678"}}, - {"id": "us-central", "label": "Dallas, TX", "country": "us", "capabilities": - ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", - "Block Storage Migrations", "Managed Databases"], "status": "ok", "resolvers": + 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"}}, {"id": "us-west", - "label": "Fremont, CA", "country": "us", "capabilities": ["Linodes", "NodeBalancers", - "Block Storage", "Kubernetes", "Cloud Firewall", "Block Storage Migrations", - "Managed Databases"], "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"}}, {"id": "us-southeast", "label": "Atlanta, GA", - "country": "us", "capabilities": ["Linodes", "NodeBalancers", "Block Storage", + 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"], "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, + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5, + 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, - 1234::5678, 1234::5678, 1234::5678"}}, {"id": "us-east", "label": "Newark, - NJ", "country": "us", "capabilities": ["Linodes", "NodeBalancers", "Block Storage", - "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Bare Metal", - "Vlans", "Block Storage Migrations", "Managed Databases"], "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"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label": + "Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", + "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "status": + "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5, 50.116.58.5, + 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4, 207.192.69.5", + "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "eu-west", "label": "London, UK", "country": "gb", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5, + 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20, + 109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country": + "sg", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "139.162.11.5, 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, + 139.162.21.5, 139.162.27.5, 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, - 1234::5678, 1234::5678, 1234::5678, 1234::5678"}}, {"id": "eu-west", - "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "NodeBalancers", - "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", - "Managed Databases"], "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"}}, - {"id": "ap-south", "label": "Singapore, SG", "country": "sg", "capabilities": - ["Linodes", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", - "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed - Databases"], "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"}}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", - "capabilities": ["Linodes", "NodeBalancers", "Block Storage", "Object Storage", - "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", - "Managed Databases"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5, + 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"}}, {"id": "ap-northeast", "label": "Tokyo, JP", - "country": "jp", "capabilities": ["Linodes", "NodeBalancers", "Block Storage", - "Kubernetes", "Cloud Firewall", "Block Storage Migrations", "Managed Databases"], - "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"}}], - "page": 1, "pages": 1, "results": 24}' + 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}' headers: Access-Control-Allow-Credentials: - "true" @@ -197,19 +264,23 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=900 - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:32:29 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: @@ -220,7 +291,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -239,13 +310,14 @@ interactions: url: https://api.linode.com/v4beta/databases/mysql/instances method: POST response: - body: '{"id": 28254, "label": "go-mysql-test-def", "type": "g6-nanode-1", "engine": + body: '{"id": 133362, "label": "go-mysql-test-def", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "provisioning", - "encrypted": false, "allow_list": ["203.0.113.1", "192.0.1.0/24"], "cluster_size": - 3, "hosts": {"primary": null, "secondary": null}, "ssl_connection": false, "replication_type": - "semi_synch", "port": 3306, "updates": {"frequency": "weekly", "duration": 3, - "hour_of_day": 0, "day_of_week": null, "week_of_month": null}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "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}}' headers: Access-Control-Allow-Credentials: - "true" @@ -258,15 +330,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "540" + - "611" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:32:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -281,7 +357,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -298,14 +374,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database"}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -320,16 +396,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:32:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -345,7 +424,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -362,14 +441,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -384,16 +463,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:33:00 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -409,7 +491,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -426,14 +508,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -448,16 +530,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:33:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -473,7 +558,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -490,14 +575,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -512,16 +597,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:33:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -537,7 +625,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -554,14 +642,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -576,16 +664,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:33:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -601,7 +692,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -618,14 +709,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -640,16 +731,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:33:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -665,7 +759,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -682,14 +776,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -704,16 +798,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:34:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -729,7 +826,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -746,14 +843,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -768,16 +865,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:34:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -793,7 +893,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -810,14 +910,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -832,16 +932,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:34:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -857,7 +960,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -874,14 +977,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -896,16 +999,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:34:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -921,7 +1027,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -938,14 +1044,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -960,16 +1066,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:35:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -985,7 +1094,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1002,14 +1111,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1024,16 +1133,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:35:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1049,7 +1161,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1066,14 +1178,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1088,16 +1200,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:35:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1113,7 +1228,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1130,14 +1245,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1152,16 +1267,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:35:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1177,7 +1295,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1194,14 +1312,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1216,16 +1334,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:36:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1241,7 +1362,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1258,14 +1379,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1280,16 +1401,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:36:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1305,7 +1429,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1322,14 +1446,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1344,16 +1468,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:36:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1369,7 +1496,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1386,14 +1513,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1408,16 +1535,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:36:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1433,7 +1563,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1450,14 +1580,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1472,16 +1602,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:37:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1497,7 +1630,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1514,14 +1647,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1536,16 +1669,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:37:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1561,7 +1697,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1578,14 +1714,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1600,16 +1736,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:37:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1625,7 +1764,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1642,14 +1781,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1664,16 +1803,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:37:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1689,7 +1831,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1706,14 +1848,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1728,16 +1870,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:38:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1753,7 +1898,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1770,14 +1915,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1792,16 +1937,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:38:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1817,7 +1965,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1834,14 +1982,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1856,16 +2004,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:38:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1881,7 +2032,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1898,14 +2049,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1920,16 +2071,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:38:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1945,7 +2099,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1962,14 +2116,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1984,16 +2138,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:39:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2009,7 +2166,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2026,14 +2183,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2048,16 +2205,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:39:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2073,7 +2233,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2090,14 +2250,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2112,16 +2272,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:39:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2137,7 +2300,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2154,14 +2317,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2176,16 +2339,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:39:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2201,7 +2367,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2218,14 +2384,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2240,16 +2406,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:40:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2265,7 +2434,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2282,14 +2451,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2304,16 +2473,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:40:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2329,7 +2501,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2346,14 +2518,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2368,16 +2540,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:40:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2393,7 +2568,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2410,14 +2585,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2432,16 +2607,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:40:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2457,7 +2635,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2474,14 +2652,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2496,16 +2674,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:41:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2521,7 +2702,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2538,14 +2719,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2560,16 +2741,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:41:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2585,7 +2769,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2602,14 +2786,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2624,16 +2808,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:41:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2649,7 +2836,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2666,14 +2853,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2688,16 +2875,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:41:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2713,7 +2903,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2730,14 +2920,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2752,16 +2942,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:42:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2777,7 +2970,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2794,14 +2987,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2816,16 +3009,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:42:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2841,7 +3037,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2858,14 +3054,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2880,16 +3076,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:42:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2905,7 +3104,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2922,14 +3121,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2944,16 +3143,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:42:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2969,7 +3171,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2986,14 +3188,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3008,16 +3210,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:43:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3033,7 +3238,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3050,14 +3255,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3072,16 +3277,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:43:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3097,7 +3305,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3114,14 +3322,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3136,16 +3344,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:43:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3161,7 +3372,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3178,14 +3389,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3200,16 +3411,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:43:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3225,7 +3439,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3242,14 +3456,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3264,16 +3478,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:44:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3289,7 +3506,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3306,14 +3523,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3328,16 +3545,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:44:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3353,7 +3573,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3370,14 +3590,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3392,16 +3612,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:44:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3417,7 +3640,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3434,14 +3657,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3456,16 +3679,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:44:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3481,7 +3707,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3498,14 +3724,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3520,16 +3746,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:45:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3545,7 +3774,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3562,14 +3791,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3584,16 +3813,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:45:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3609,7 +3841,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3626,14 +3858,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3648,16 +3880,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:45:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3673,7 +3908,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3690,14 +3925,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3712,16 +3947,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:45:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3737,7 +3975,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3754,14 +3992,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3776,16 +4014,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:46:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3801,7 +4042,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3818,14 +4059,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3840,16 +4081,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:46:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3865,7 +4109,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3882,14 +4126,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3904,16 +4148,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:46:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3929,7 +4176,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3946,14 +4193,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3968,16 +4215,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:46:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3993,7 +4243,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4010,14 +4260,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4032,16 +4282,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:47:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4057,7 +4310,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4074,14 +4327,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4096,16 +4349,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:47:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4121,7 +4377,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4138,14 +4394,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4160,16 +4416,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:47:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4185,7 +4444,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4202,14 +4461,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4224,16 +4483,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:47:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4249,7 +4511,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4266,14 +4528,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4288,16 +4550,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:48:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4313,7 +4578,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4330,14 +4595,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4352,16 +4617,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:48:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4377,7 +4645,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4394,14 +4662,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4416,16 +4684,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:48:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4441,7 +4712,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4458,14 +4729,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4480,16 +4751,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:48:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4505,7 +4779,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4522,14 +4796,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4544,16 +4818,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:49:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4569,7 +4846,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4586,14 +4863,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4608,16 +4885,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:49:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4633,7 +4913,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4650,14 +4930,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4672,16 +4952,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:49:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4697,7 +4980,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4714,14 +4997,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4736,16 +5019,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:49:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4761,7 +5047,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4778,14 +5064,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4800,16 +5086,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:50:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4825,7 +5114,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4842,14 +5131,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4864,16 +5153,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:50:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4889,7 +5181,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4906,14 +5198,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4928,16 +5220,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:50:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4953,7 +5248,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4970,14 +5265,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4992,16 +5287,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:50:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5017,7 +5315,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5034,14 +5332,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -5056,16 +5354,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:51:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5081,7 +5382,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5098,14 +5399,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -5120,16 +5421,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:51:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5145,7 +5449,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5162,14 +5466,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -5184,16 +5488,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:51:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5209,7 +5516,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5226,14 +5533,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -5248,16 +5555,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:51:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5273,7 +5583,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5290,14 +5600,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -5312,16 +5622,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:52:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5337,7 +5650,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5354,14 +5667,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -5376,16 +5689,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:52:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5401,7 +5717,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5418,14 +5734,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -5440,16 +5756,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:52:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5465,7 +5784,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5482,14 +5801,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -5504,16 +5823,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:52:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5529,7 +5851,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5546,14 +5868,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -5568,16 +5890,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:53:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5593,7 +5918,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5610,14 +5935,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -5632,16 +5957,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:53:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5657,7 +5985,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5674,14 +6002,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -5696,16 +6024,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:53:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5721,7 +6052,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5738,14 +6069,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -5760,16 +6091,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:53:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5785,7 +6119,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5802,14 +6136,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -5824,16 +6158,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:54:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5849,7 +6186,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5866,14 +6203,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -5888,16 +6225,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:54:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5913,7 +6253,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5930,14 +6270,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -5952,16 +6292,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:54:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5977,7 +6320,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5994,14 +6337,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -6016,16 +6359,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:54:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6041,7 +6387,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6058,14 +6404,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -6080,16 +6426,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:55:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6105,7 +6454,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6122,14 +6471,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -6144,16 +6493,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:55:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6169,7 +6521,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6186,14 +6538,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -6208,16 +6560,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:55:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6233,7 +6588,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6250,14 +6605,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -6272,16 +6627,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:55:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6297,7 +6655,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6314,14 +6672,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -6336,16 +6694,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:56:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6361,7 +6722,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6378,14 +6739,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -6400,16 +6761,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:56:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6425,7 +6789,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6442,14 +6806,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -6464,16 +6828,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:56:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6489,7 +6856,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6506,14 +6873,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -6528,16 +6895,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:56:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6553,7 +6923,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6570,14 +6940,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -6592,16 +6962,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:57:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6617,7 +6990,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6634,14 +7007,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -6656,16 +7029,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:57:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6681,7 +7057,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6698,14 +7074,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -6720,16 +7096,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:57:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6745,7 +7124,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6762,14 +7141,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -6784,16 +7163,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:57:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6809,7 +7191,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6826,14 +7208,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -6848,16 +7230,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:58:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6873,7 +7258,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6890,14 +7275,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -6912,16 +7297,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:58:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6937,7 +7325,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6954,14 +7342,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -6976,16 +7364,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:58:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7001,7 +7392,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7018,14 +7409,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -7040,16 +7431,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:58:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7065,7 +7459,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7082,14 +7476,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -7104,16 +7498,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:59:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7129,7 +7526,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7146,14 +7543,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -7168,16 +7565,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:59:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7193,7 +7593,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7210,14 +7610,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -7232,16 +7632,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:59:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7257,7 +7660,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7274,14 +7677,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -7296,16 +7699,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 17:59:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7321,7 +7727,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7338,14 +7744,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -7360,16 +7766,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:00:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7385,7 +7794,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7402,14 +7811,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -7424,16 +7833,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:00:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7449,7 +7861,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7466,14 +7878,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -7488,16 +7900,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:00:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7513,7 +7928,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7530,14 +7945,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -7552,16 +7967,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:00:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7577,7 +7995,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7594,14 +8012,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -7616,16 +8034,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:01:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7641,7 +8062,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7658,14 +8079,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -7680,16 +8101,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:01:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7705,7 +8129,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7722,14 +8146,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -7744,16 +8168,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:01:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7769,7 +8196,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7786,14 +8213,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -7808,16 +8235,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:01:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7833,7 +8263,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7850,14 +8280,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -7872,16 +8302,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:02:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7897,7 +8330,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7914,14 +8347,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -7936,16 +8369,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:02:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7961,7 +8397,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7978,14 +8414,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -8000,16 +8436,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:02:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8025,7 +8464,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8042,14 +8481,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -8064,16 +8503,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:02:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8089,7 +8531,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8106,14 +8548,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -8128,16 +8570,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:03:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8153,7 +8598,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8170,14 +8615,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -8192,16 +8637,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:03:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8217,7 +8665,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8234,14 +8682,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -8256,16 +8704,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:03:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8281,7 +8732,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8298,14 +8749,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -8320,16 +8771,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:03:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8345,7 +8799,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8362,14 +8816,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -8384,16 +8838,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:04:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8409,7 +8866,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8426,14 +8883,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -8448,16 +8905,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:04:30 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8473,7 +8933,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8490,14 +8950,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -8512,16 +8972,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:04:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8537,7 +9000,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8554,14 +9017,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -8576,16 +9039,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:04:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8601,7 +9067,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8618,14 +9084,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -8640,16 +9106,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:05:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8665,7 +9134,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8682,14 +9151,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -8704,16 +9173,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:05:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8729,7 +9201,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8746,14 +9218,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -8768,16 +9240,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:05:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8793,7 +9268,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8810,14 +9285,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -8832,16 +9307,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:05:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8857,7 +9335,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8874,14 +9352,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -8896,16 +9374,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:06:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8921,7 +9402,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8938,14 +9419,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -8960,16 +9441,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:06:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8985,7 +9469,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9002,14 +9486,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -9024,16 +9508,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:06:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9049,7 +9536,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9066,14 +9553,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -9088,16 +9575,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:06:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9113,7 +9603,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9130,14 +9620,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -9152,16 +9642,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:07:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9177,7 +9670,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9194,14 +9687,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -9216,16 +9709,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:07:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9241,7 +9737,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9258,14 +9754,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -9280,16 +9776,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:07:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9305,7 +9804,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9322,14 +9821,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -9344,16 +9843,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:07:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9369,7 +9871,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9386,14 +9888,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -9408,16 +9910,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:08:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9433,7 +9938,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9450,14 +9955,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -9472,16 +9977,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:08:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9497,7 +10005,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9514,14 +10022,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -9536,16 +10044,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:08:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9561,7 +10072,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9578,14 +10089,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -9600,16 +10111,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:08:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9625,7 +10139,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9642,14 +10156,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -9664,16 +10178,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:09:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9689,7 +10206,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9706,14 +10223,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -9728,16 +10245,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:09:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9753,7 +10273,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9770,14 +10290,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -9792,16 +10312,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:09:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9817,7 +10340,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9834,14 +10357,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -9856,16 +10379,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:09:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9881,7 +10407,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9898,14 +10424,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -9920,16 +10446,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:10:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9945,7 +10474,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9962,14 +10491,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -9984,16 +10513,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:10:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -10009,7 +10541,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10026,14 +10558,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -10048,16 +10580,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:10:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -10073,7 +10608,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10090,14 +10625,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -10112,16 +10647,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:10:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -10137,7 +10675,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10154,14 +10692,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -10176,16 +10714,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:11:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -10201,7 +10742,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10218,14 +10759,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -10240,16 +10781,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:11:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -10265,7 +10809,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10282,14 +10826,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -10304,16 +10848,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:11:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -10329,7 +10876,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10346,14 +10893,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -10368,16 +10915,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:11:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -10393,7 +10943,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10410,14 +10960,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -10432,16 +10982,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:12:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -10457,7 +11010,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10474,14 +11027,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -10496,16 +11049,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:12:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -10521,7 +11077,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10538,14 +11094,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -10560,16 +11116,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:12:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -10585,7 +11144,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10602,14 +11161,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -10624,16 +11183,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:12:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -10649,7 +11211,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10666,14 +11228,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -10688,16 +11250,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:13:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -10713,7 +11278,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10730,14 +11295,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -10752,16 +11317,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:13:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -10777,7 +11345,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10794,14 +11362,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -10816,16 +11384,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:13:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -10841,7 +11412,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10858,14 +11429,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -10880,16 +11451,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:13:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -10905,7 +11479,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10922,14 +11496,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -10944,16 +11518,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:14:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -10969,7 +11546,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10986,14 +11563,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -11008,16 +11585,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:14:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11033,7 +11613,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11050,14 +11630,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -11072,16 +11652,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:14:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11097,7 +11680,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11114,14 +11697,14 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -11136,16 +11719,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "453" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:14:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11161,7 +11747,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11178,16 +11764,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-05T04:42:29"},"entity.id":28254,"entity.type":"database","id":{"+gte":555537944}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555537944, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, - "duration": 2550, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-mysql-test-def", "id": 28254, "type": "database", "url": "/v4/databases/mysql/instances/28254"}, - "status": "finished", "secondary_entity": null, "message": ""}], "page": 1, - "pages": 1, "results": 1}' + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": null, "time_remaining": null, "rate": null, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, + "status": "notification", "secondary_entity": null, "message": ""}], "page": + 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11200,16 +11786,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "448" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:15:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11225,7 +11814,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11241,24 +11830,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 23355, "label": "tf_test-8585210487497797453", "type": - "g6-nanode-1", "engine": "mysql", "version": "5.7.39", "region": "us-iad", "status": - "provisioning", "encrypted": false, "allow_list": [], "cluster_size": 1, "hosts": - {"primary": null, "secondary": null}, "ssl_connection": false, "replication_type": - "none", "port": 3306, "updates": {"frequency": "weekly", "duration": 3, "hour_of_day": - 0, "day_of_week": null, "week_of_month": null}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}, {"id": 28254, "label": "go-mysql-test-def", - "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "active", "encrypted": false, "allow_list": ["203.0.113.1", "192.0.1.0/24"], - "cluster_size": 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "weekly", "duration": 3, "hour_of_day": 1, "day_of_week": 7, "week_of_month": - null}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}], - "page": 1, "pages": 1, "results": 2}' + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": null, "time_remaining": null, "rate": null, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, + "status": "notification", "secondary_entity": null, "message": ""}], "page": + 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11271,21 +11853,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:15: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 + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -11294,7 +11881,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11310,17 +11897,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def", "type": "g6-nanode-1", "engine": - "mysql", "version": "8.0.30", "region": "ap-west", "status": "active", "encrypted": - false, "allow_list": ["203.0.113.1", "192.0.1.0/24"], "cluster_size": 3, "hosts": - {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", "secondary": - "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, "ssl_connection": - false, "replication_type": "semi_synch", "port": 3306, "updates": {"frequency": - "weekly", "duration": 3, "hour_of_day": 1, "day_of_week": 7, "week_of_month": - null}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": null, "time_remaining": null, "rate": null, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, + "status": "notification", "secondary_entity": null, "message": ""}], "page": + 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11333,23 +11920,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "635" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:15: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 + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -11358,14 +11948,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: '{"label":"go-mysql-test-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}}' + body: "" form: {} headers: Accept: @@ -11374,17 +11964,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 - method: PUT + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": null, "time_remaining": null, "rate": null, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, + "status": "notification", "secondary_entity": null, "message": ""}], "page": + 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11397,21 +11987,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:15:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter + - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_write + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -11420,7 +12015,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11437,16 +12032,16 @@ interactions: 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":28254,"entity.type":"database"}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555549963, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "zliang27", "entity": - {"label": "go-mysql-test-def-updated", "id": 28254, "type": "database", "url": - "/v4/databases/mysql/instances/28254"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, + "status": "notification", "secondary_entity": null, "message": ""}], "page": + 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11459,16 +12054,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "461" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:16:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11484,7 +12082,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11501,16 +12099,16 @@ interactions: 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":28254,"entity.type":"database","id":{"+gte":555549963}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555549963, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "zliang27", "entity": - {"label": "go-mysql-test-def-updated", "id": 28254, "type": "database", "url": - "/v4/databases/mysql/instances/28254"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, + "status": "notification", "secondary_entity": null, "message": ""}], "page": + 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11523,16 +12121,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "461" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:16:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11548,7 +12149,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11565,16 +12166,16 @@ interactions: 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":28254,"entity.type":"database","id":{"+gte":555549963}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555549963, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "zliang27", "entity": - {"label": "go-mysql-test-def-updated", "id": 28254, "type": "database", "url": - "/v4/databases/mysql/instances/28254"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, + "status": "notification", "secondary_entity": null, "message": ""}], "page": + 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11587,16 +12188,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "461" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:16:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11612,7 +12216,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11629,17 +12233,17 @@ interactions: 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":28254,"entity.type":"database","id":{"+gte":555549963}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555549963, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "zliang27", "entity": - {"label": "go-mysql-test-def-updated", "id": 28254, "type": "database", "url": - "/v4/databases/mysql/instances/28254"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - headers: + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, + "status": "notification", "secondary_entity": null, "message": ""}], "page": + 1, "pages": 1, "results": 1}' + headers: Access-Control-Allow-Credentials: - "true" Access-Control-Allow-Headers: @@ -11651,16 +12255,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "461" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:16:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11676,7 +12283,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11693,16 +12300,16 @@ interactions: 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":28254,"entity.type":"database","id":{"+gte":555549963}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 555549963, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, - "duration": 67, "action": "database_update", "username": "zliang27", "entity": - {"label": "go-mysql-test-def-updated", "id": 28254, "type": "database", "url": - "/v4/databases/mysql/instances/28254"}, "status": "finished", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": null, "time_remaining": null, "rate": null, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, + "status": "notification", "secondary_entity": null, "message": ""}], "page": + 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11715,16 +12322,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "454" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:17:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11740,7 +12350,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11756,17 +12366,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "active", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": null, "time_remaining": null, "rate": null, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, + "status": "notification", "secondary_entity": null, "message": ""}], "page": + 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11779,23 +12389,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "646" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:17: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 + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -11804,7 +12417,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11820,10 +12433,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254/ssl + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"ca_certificate": null}' + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": null, "time_remaining": null, "rate": null, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, + "status": "notification", "secondary_entity": null, "message": ""}], "page": + 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11836,23 +12456,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "24" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:17: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 + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -11861,7 +12484,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11877,10 +12500,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254/credentials + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"username": "linroot", "password": "fdKDP2hWbWctlF^w"}' + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": null, "time_remaining": null, "rate": null, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, + "status": "notification", "secondary_entity": null, "message": ""}], "page": + 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11893,23 +12523,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "55" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:17: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 + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -11918,7 +12551,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11934,10 +12567,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254/credentials/reset - method: POST + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET response: - body: '{}' + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": null, "time_remaining": null, "rate": null, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, + "status": "notification", "secondary_entity": null, "message": ""}], "page": + 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11950,21 +12590,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "2" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:18: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 + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -11973,7 +12618,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11989,10 +12634,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254/credentials + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"username": "linroot", "password": "sUOZkJ7_Otk6sdrf"}' + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": null, "time_remaining": null, "rate": null, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, + "status": "notification", "secondary_entity": null, "message": ""}], "page": + 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12005,23 +12657,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "55" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:18: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 + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -12030,7 +12685,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12046,10 +12701,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254/patch - method: POST + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET response: - body: '{}' + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": null, "time_remaining": null, "rate": null, + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, + "status": "notification", "secondary_entity": null, "message": ""}], "page": + 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12062,21 +12724,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "2" + - "457" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:18:44 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter + - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_write + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -12085,7 +12752,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12101,17 +12768,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database","id":{"+gte":755325328}}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, + "duration": 2552, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def", "id": 133362, "type": "database", "url": "/v4/databases/mysql/instances/133362"}, + "status": "finished", "secondary_entity": null, "message": ""}], "page": 1, + "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12124,23 +12791,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "452" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:18: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 + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -12149,7 +12819,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12165,17 +12835,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{"data": [{"id": 133362, "label": "go-mysql-test-def", "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-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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": {"172.105.36.137": "primary", "172.105.63.12": + "failover", "194.195.119.223": "failover"}, "ssl_connection": false, "replication_type": + "semi_synch", "updates": {"frequency": "weekly", "duration": 3, "hour_of_day": + 2, "day_of_week": 7, "week_of_month": null}}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12188,16 +12861,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "838" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:18:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -12213,7 +12889,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12229,17 +12905,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{"id": 133362, "label": "go-mysql-test-def", "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-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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": {"172.105.36.137": "primary", "172.105.63.12": + "failover", "194.195.119.223": "failover"}, "ssl_connection": false, "replication_type": + "semi_synch", "updates": {"frequency": "weekly", "duration": 3, "hour_of_day": + 2, "day_of_week": 7, "week_of_month": null}}' headers: Access-Control-Allow-Credentials: - "true" @@ -12252,16 +12930,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "789" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:18:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -12277,7 +12958,74 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"label":"go-mysql-test-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/mysql/instances/133362 + method: PUT + response: + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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: + - "715" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:19:02 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 @@ -12293,17 +13041,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133362,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12316,23 +13064,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "465" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:19:18 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -12341,7 +13092,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12357,17 +13108,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12380,23 +13131,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "465" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:19: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 + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -12405,7 +13159,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12421,17 +13175,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12444,23 +13198,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "465" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:19:48 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -12469,7 +13226,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12485,17 +13242,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12508,23 +13265,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "465" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:20:03 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -12533,7 +13293,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12549,17 +13309,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12572,23 +13332,3845 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "465" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:20:18 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:20:33 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:20:48 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:21: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_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:21:18 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:21:33 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:21:48 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:22: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_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:22:18 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:22:33 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:22:48 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:23: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_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:23:18 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:23:33 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:23:48 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:24: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_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:24:18 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:24:33 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:24:48 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:25: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_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:25:18 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:25:33 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:25:48 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:26: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_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:26:18 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:26:33 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:26:48 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:27: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_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:27:18 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:27:33 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:27:48 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:28: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_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:28:18 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:28:33 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:28:48 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:29: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_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:29:18 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:29:33 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:29:48 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:30: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_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:30:18 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:30:33 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:30:48 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:31: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_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:31:18 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:31:33 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:31:48 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:32: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_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:32:18 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:32:33 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:32:48 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:33: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_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:33:18 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:33:33 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:33:48 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:34: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_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:34:18 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - 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":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET + response: + body: '{"data": [{"id": 755368578, "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-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 18:34:33 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -12597,7 +17179,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12613,17 +17195,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133362,"entity.type":"database","id":{"+gte":755368578}}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, + "duration": 61, "action": "database_update", "username": "lgarber-dx", "entity": + {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": + "/v4/databases/mysql/instances/133362"}, "status": "finished", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12636,23 +17218,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "458" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:34:48 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -12661,7 +17246,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12677,17 +17262,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{"id": 133362, "label": "go-mysql-test-def-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-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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": {"172.105.36.137": "primary", "172.105.63.12": + "failover", "194.195.119.223": "failover"}, "ssl_connection": false, "replication_type": + "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": + 8, "day_of_week": 3, "week_of_month": 3}}' headers: Access-Control-Allow-Credentials: - "true" @@ -12700,16 +17287,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "800" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:35:03 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -12725,7 +17315,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12741,17 +17331,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362/ssl method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{"ca_certificate": null}' headers: Access-Control-Allow-Credentials: - "true" @@ -12764,16 +17347,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "24" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:35:03 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -12789,7 +17375,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12805,17 +17391,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362/credentials method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{"username": "linroot", "password": "ij09wmu-ISYaMk44"}' headers: Access-Control-Allow-Credentials: - "true" @@ -12828,16 +17407,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "55" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:35:04 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -12853,7 +17435,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12869,17 +17451,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 - method: GET + url: https://api.linode.com/v4beta/databases/mysql/instances/133362/credentials/reset + method: POST response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{}' headers: Access-Control-Allow-Credentials: - "true" @@ -12892,23 +17467,25 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "2" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:40:05 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -12917,7 +17494,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12933,17 +17510,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362/credentials method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{"username": "linroot", "password": "Ah1GS8,RKE5Y3okY"}' headers: Access-Control-Allow-Credentials: - "true" @@ -12956,16 +17526,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "55" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:40:22 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -12981,7 +17554,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12997,17 +17570,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 - method: GET + url: https://api.linode.com/v4beta/databases/mysql/instances/133362/patch + method: POST response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{}' headers: Access-Control-Allow-Credentials: - "true" @@ -13020,23 +17586,25 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "2" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18: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 + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -13045,7 +17613,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13061,17 +17629,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -13084,16 +17653,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:40:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13109,7 +17681,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13125,17 +17697,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -13148,16 +17721,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:40:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13173,7 +17749,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13189,17 +17765,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -13212,16 +17789,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:41:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13237,7 +17817,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13253,17 +17833,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -13276,16 +17857,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:41:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13301,7 +17885,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13317,17 +17901,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -13340,16 +17925,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:41:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13365,7 +17953,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13381,17 +17969,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -13404,16 +17993,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:41:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13429,7 +18021,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13445,17 +18037,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -13468,16 +18061,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:42:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13493,7 +18089,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13509,17 +18105,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -13532,16 +18129,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:42:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13557,7 +18157,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13573,17 +18173,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -13596,16 +18197,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:42:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13621,7 +18225,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13637,17 +18241,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -13660,16 +18265,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:42:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13685,7 +18293,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13701,17 +18309,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -13724,16 +18333,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:43:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13749,7 +18361,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13765,17 +18377,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -13788,16 +18401,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:43:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13813,7 +18429,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13829,17 +18445,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -13852,16 +18469,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:43:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13877,7 +18497,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13893,17 +18513,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -13916,16 +18537,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:43:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13941,7 +18565,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13957,17 +18581,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -13980,16 +18605,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:44:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14005,7 +18633,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14021,17 +18649,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -14044,16 +18673,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:44:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14069,7 +18701,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14085,17 +18717,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -14108,16 +18741,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:44:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14133,7 +18769,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14149,17 +18785,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -14172,16 +18809,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:44:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14197,7 +18837,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14213,17 +18853,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -14236,16 +18877,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:45:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14261,7 +18905,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14277,17 +18921,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -14300,16 +18945,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:45:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14325,7 +18973,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14341,17 +18989,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -14364,16 +19013,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:45:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14389,7 +19041,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14405,17 +19057,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -14428,16 +19081,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:45:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14453,7 +19109,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14469,17 +19125,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -14492,16 +19149,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:46:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14517,7 +19177,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14533,17 +19193,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -14556,16 +19217,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:46:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14581,7 +19245,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14597,17 +19261,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -14620,16 +19285,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:46:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14645,7 +19313,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14661,17 +19329,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -14684,16 +19353,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:46:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14709,7 +19381,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14725,17 +19397,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -14748,16 +19421,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:47:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14773,7 +19449,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14789,17 +19465,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -14812,16 +19489,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:47:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14837,7 +19517,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14853,17 +19533,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -14876,16 +19557,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:47:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14901,7 +19585,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14917,17 +19601,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -14940,16 +19625,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:47:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14965,7 +19653,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14981,17 +19669,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -15004,16 +19693,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:48:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15029,7 +19721,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15045,17 +19737,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -15068,16 +19761,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:48:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15093,7 +19789,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15109,17 +19805,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -15132,16 +19829,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:48:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15157,7 +19857,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15173,17 +19873,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -15196,16 +19897,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:48:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15221,7 +19925,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15237,17 +19941,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -15260,16 +19965,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:49:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15285,7 +19993,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15301,17 +20009,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -15324,16 +20033,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:49:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15349,7 +20061,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15365,17 +20077,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -15388,16 +20101,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:49:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15413,7 +20129,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15429,17 +20145,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -15452,16 +20169,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:49:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15477,7 +20197,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15493,17 +20213,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -15516,16 +20237,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:50:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15541,7 +20265,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15557,17 +20281,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -15580,16 +20305,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:50:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15605,7 +20333,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15621,17 +20349,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -15644,16 +20373,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:50:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15669,7 +20401,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15685,17 +20417,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -15708,16 +20441,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:50:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15733,7 +20469,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15749,17 +20485,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -15772,16 +20509,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:51:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15797,7 +20537,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15813,17 +20553,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -15836,16 +20577,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:51:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15861,7 +20605,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15877,17 +20621,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -15900,16 +20645,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:51:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15925,7 +20673,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15941,17 +20689,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -15964,16 +20713,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:51:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15989,7 +20741,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16005,17 +20757,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -16028,16 +20781,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:52:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16053,7 +20809,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16069,17 +20825,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -16092,16 +20849,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:52:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16117,7 +20877,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16133,17 +20893,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -16156,16 +20917,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:52:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16181,7 +20945,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16197,17 +20961,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -16220,16 +20985,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "716" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:52:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16245,7 +21013,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16261,17 +21029,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -16284,16 +21053,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:53:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16309,7 +21081,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16325,17 +21097,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -16348,16 +21121,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:53:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16373,7 +21149,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16389,17 +21165,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -16412,16 +21189,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:53:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16437,7 +21217,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16453,17 +21233,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -16476,16 +21257,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:53:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16501,7 +21285,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16517,17 +21301,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -16540,16 +21325,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:54:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16565,7 +21353,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16581,17 +21369,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -16604,16 +21393,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:54:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16629,7 +21421,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16645,17 +21437,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -16668,16 +21461,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:54:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16693,7 +21489,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16709,17 +21505,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -16732,16 +21529,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:54:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16757,7 +21557,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16773,17 +21573,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -16796,16 +21597,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:55:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16821,7 +21625,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16837,17 +21641,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -16860,16 +21665,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:55:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16885,7 +21693,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16901,17 +21709,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -16924,16 +21733,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:55:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16949,7 +21761,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16965,17 +21777,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -16988,16 +21801,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:55:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17013,7 +21829,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17029,17 +21845,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -17052,16 +21869,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:56:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17077,7 +21897,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17093,17 +21913,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -17116,16 +21937,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:56:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17141,7 +21965,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17157,17 +21981,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -17180,16 +22005,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:56:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17205,7 +22033,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17221,17 +22049,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -17244,16 +22073,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:56:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17269,7 +22101,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17285,17 +22117,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -17308,16 +22141,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:57:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17333,7 +22169,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17349,17 +22185,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -17372,16 +22209,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:57:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17397,7 +22237,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17413,17 +22253,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -17436,16 +22277,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:57:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17461,7 +22305,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17477,17 +22321,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -17500,16 +22345,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:57:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17525,7 +22373,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17541,17 +22389,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -17564,16 +22413,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:58:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17589,7 +22441,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17605,17 +22457,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -17628,16 +22481,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:58:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17653,7 +22509,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17669,17 +22525,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -17692,16 +22549,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:58:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17717,7 +22577,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17733,17 +22593,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -17756,16 +22617,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:58:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17781,7 +22645,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17797,17 +22661,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -17820,16 +22685,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:59:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17845,7 +22713,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17861,17 +22729,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -17884,16 +22753,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:59:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17909,7 +22781,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17925,17 +22797,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -17948,16 +22821,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:59:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17973,7 +22849,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17989,17 +22865,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -18012,16 +22889,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 18:59:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18037,7 +22917,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18053,17 +22933,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -18076,16 +22957,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:00:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18101,7 +22985,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18117,17 +23001,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -18140,16 +23025,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:00:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18165,7 +23053,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18181,17 +23069,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -18204,16 +23093,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:00:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18229,7 +23121,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18245,17 +23137,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -18268,16 +23161,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:00:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18293,7 +23189,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18309,17 +23205,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -18332,16 +23229,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:01:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18357,7 +23257,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18373,17 +23273,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -18396,16 +23297,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:01:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18421,7 +23325,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18437,17 +23341,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -18460,16 +23365,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:01:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18485,7 +23393,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18501,17 +23409,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -18524,16 +23433,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:01:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18549,7 +23461,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18565,17 +23477,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -18588,16 +23501,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:02:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18613,7 +23529,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18629,17 +23545,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -18652,16 +23569,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:02:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18677,7 +23597,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18693,17 +23613,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -18716,16 +23637,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:02:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18741,7 +23665,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18757,17 +23681,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -18780,16 +23705,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:02:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18805,7 +23733,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18821,17 +23749,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -18844,16 +23773,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:03:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18869,7 +23801,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18885,17 +23817,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -18908,16 +23841,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:03:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18933,7 +23869,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18949,17 +23885,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -18972,16 +23909,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:03:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18997,7 +23937,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19013,17 +23953,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -19036,16 +23977,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:03:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -19061,7 +24005,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19077,17 +24021,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -19100,16 +24045,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:04:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -19125,7 +24073,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19141,17 +24089,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -19164,16 +24113,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:04:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -19189,7 +24141,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19205,17 +24157,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -19228,16 +24181,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:04:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -19253,7 +24209,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19269,17 +24225,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -19292,16 +24249,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:04:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -19317,7 +24277,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19333,17 +24293,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -19356,16 +24317,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:05:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -19381,7 +24345,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19397,17 +24361,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -19420,16 +24385,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:05:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -19445,7 +24413,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19461,17 +24429,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -19484,16 +24453,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:05:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -19509,7 +24481,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19525,17 +24497,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -19548,16 +24521,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:05:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -19573,7 +24549,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19589,17 +24565,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -19612,16 +24589,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:06:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -19637,7 +24617,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19653,17 +24633,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -19676,16 +24657,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:06:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -19701,7 +24685,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19717,17 +24701,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -19740,16 +24725,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:06:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -19765,7 +24753,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19781,17 +24769,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -19804,16 +24793,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:06:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -19829,7 +24821,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19845,17 +24837,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -19868,16 +24861,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:07:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -19893,7 +24889,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19909,17 +24905,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -19932,16 +24929,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:07:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -19957,7 +24957,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19973,17 +24973,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -19996,16 +24997,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:07:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -20021,7 +25025,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -20037,17 +25041,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -20060,16 +25065,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:07:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -20085,7 +25093,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -20101,17 +25109,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -20124,16 +25133,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:08:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -20149,7 +25161,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -20165,17 +25177,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -20188,16 +25201,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:08:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -20213,7 +25229,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -20229,17 +25245,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -20252,16 +25269,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:08:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -20277,7 +25297,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -20293,17 +25313,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -20316,16 +25337,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:08:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -20341,7 +25365,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -20357,17 +25381,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -20380,16 +25405,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:09:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -20405,7 +25433,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -20421,17 +25449,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -20444,16 +25473,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:09:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -20469,7 +25501,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -20485,17 +25517,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -20508,16 +25541,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:09:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -20533,7 +25569,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -20549,17 +25585,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -20572,16 +25609,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:09:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -20597,7 +25637,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -20613,17 +25653,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -20636,16 +25677,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:10:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -20661,7 +25705,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -20677,17 +25721,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -20700,16 +25745,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:10:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -20725,7 +25773,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -20741,17 +25789,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -20764,16 +25813,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:10:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -20789,7 +25841,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -20805,17 +25857,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -20828,16 +25881,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:10:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -20853,7 +25909,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -20869,17 +25925,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -20892,16 +25949,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:11:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -20917,7 +25977,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -20933,17 +25993,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -20956,16 +26017,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:11:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -20981,7 +26045,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -20997,17 +26061,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -21020,16 +26085,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:11:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -21045,7 +26113,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -21061,17 +26129,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -21084,16 +26153,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:11:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -21109,7 +26181,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -21125,17 +26197,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -21148,16 +26221,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:12:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -21173,7 +26249,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -21189,17 +26265,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -21212,16 +26289,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:12:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -21237,7 +26317,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -21253,17 +26333,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -21276,16 +26357,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:12:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -21301,7 +26385,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -21317,17 +26401,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -21340,16 +26425,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:12:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -21365,7 +26453,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -21381,17 +26469,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -21404,16 +26493,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:13:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -21429,7 +26521,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -21445,17 +26537,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -21468,16 +26561,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:13:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -21493,7 +26589,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -21509,17 +26605,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -21532,16 +26629,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:13:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -21557,7 +26657,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -21573,17 +26673,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -21596,16 +26697,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:13:54 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -21621,7 +26725,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -21637,17 +26741,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -21660,16 +26765,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:14:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -21685,7 +26793,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -21701,17 +26809,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -21724,16 +26833,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "648" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:14:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -21749,7 +26861,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -21765,17 +26877,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "active", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -21788,16 +26901,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "646" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:14:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -21813,14 +26929,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: '{"label":"mysqlbackupforlinodego","target":"primary"}' + body: "" form: {} headers: Accept: @@ -21829,10 +26945,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254/backups - method: POST + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + method: GET response: - body: '{}' + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -21845,21 +26969,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "2" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19: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_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -21868,7 +26997,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -21884,10 +27013,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254/backups + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"data": [], "page": 1, "pages": 1, "results": 0}' + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "updating", + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -21900,23 +27037,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "49" + - "715" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19: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_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -21925,7 +27065,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -21941,10 +27081,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254/backups + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"data": [], "page": 1, "pages": 1, "results": 0}' + body: '{"id": 133362, "label": "go-mysql-test-def-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-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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": {"172.105.36.137": "primary", "172.105.63.12": + "failover", "194.195.119.223": "failover"}, "ssl_connection": false, "replication_type": + "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": + 8, "day_of_week": 3, "week_of_month": 3}}' headers: Access-Control-Allow-Credentials: - "true" @@ -21957,23 +27106,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "49" + - "800" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19: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_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -21982,14 +27134,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"label":"mysqlbackupforlinodego","target":"primary"}' form: {} headers: Accept: @@ -21998,10 +27150,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254/backups - method: GET + url: https://api.linode.com/v4beta/databases/mysql/instances/133362/backups + method: POST response: - body: '{"data": [], "page": 1, "pages": 1, "results": 0}' + body: '{}' headers: Access-Control-Allow-Credentials: - "true" @@ -22014,21 +27166,23 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "49" + - "2" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:15:27 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: @@ -22039,7 +27193,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -22055,7 +27209,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254/backups + url: https://api.linode.com/v4beta/databases/mysql/instances/133362/backups method: GET response: body: '{"data": [], "page": 1, "pages": 1, "results": 0}' @@ -22071,16 +27225,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:15:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -22096,7 +27253,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -22112,7 +27269,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254/backups + url: https://api.linode.com/v4beta/databases/mysql/instances/133362/backups method: GET response: body: '{"data": [], "page": 1, "pages": 1, "results": 0}' @@ -22128,16 +27285,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:15:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -22153,7 +27313,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -22169,7 +27329,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254/backups + url: https://api.linode.com/v4beta/databases/mysql/instances/133362/backups method: GET response: body: '{"data": [], "page": 1, "pages": 1, "results": 0}' @@ -22185,16 +27345,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:16:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -22210,7 +27373,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -22226,7 +27389,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254/backups + url: https://api.linode.com/v4beta/databases/mysql/instances/133362/backups method: GET response: body: '{"data": [], "page": 1, "pages": 1, "results": 0}' @@ -22242,16 +27405,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:16:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -22267,7 +27433,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -22283,11 +27449,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254/backups + url: https://api.linode.com/v4beta/databases/mysql/instances/133362/backups method: GET response: - body: '{"data": [{"id": 807908, "type": "snapshot", "label": "mysqlbackupforlinodego", - "created": "2018-01-02T03:04:05"}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -22300,16 +27465,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "152" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:16:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -22325,7 +27493,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -22341,11 +27509,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254/backups/807908 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362/backups method: GET response: - body: '{"id": 807908, "type": "snapshot", "label": "mysqlbackupforlinodego", "created": - "2018-01-02T03:04:05"}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -22358,16 +27525,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "103" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:16:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -22383,7 +27553,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -22399,17 +27569,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362/backups method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "backing_up", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -22422,23 +27585,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "650" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:17: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 + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -22447,7 +27613,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -22463,17 +27629,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362/backups method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "backing_up", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -22486,23 +27645,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "650" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:17: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 + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -22511,7 +27673,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -22527,17 +27689,11 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362/backups method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "backing_up", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{"data": [{"id": 1425321, "type": "snapshot", "label": "mysqlbackupforlinodego", + "created": "2018-01-02T03:04:05"}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -22550,23 +27706,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "650" + - "153" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:17: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 + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -22575,7 +27734,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -22591,17 +27750,11 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362/backups/1425321 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "backing_up", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{"id": 1425321, "type": "snapshot", "label": "mysqlbackupforlinodego", + "created": "2018-01-02T03:04:05"}' headers: Access-Control-Allow-Credentials: - "true" @@ -22614,23 +27767,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "650" + - "104" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:17: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 + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -22639,7 +27795,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -22655,17 +27811,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "backing_up", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -22678,16 +27835,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "650" + - "717" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:18:00 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -22703,7 +27863,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -22719,17 +27879,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "backing_up", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -22742,16 +27903,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "650" + - "717" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:18:15 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -22767,7 +27931,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -22783,17 +27947,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "backing_up", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -22806,16 +27971,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "650" + - "717" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:18:30 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -22831,7 +27999,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -22847,17 +28015,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "backing_up", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -22870,16 +28039,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "650" + - "717" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:18:45 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -22895,7 +28067,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -22911,17 +28083,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "backing_up", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -22934,16 +28107,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "650" + - "717" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:19:00 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -22959,7 +28135,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -22975,17 +28151,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "backing_up", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -22998,16 +28175,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "650" + - "717" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:19:15 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -23023,7 +28203,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -23039,17 +28219,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "backing_up", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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" @@ -23062,16 +28243,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "650" + - "717" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:19:30 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -23087,7 +28271,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -23103,17 +28287,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: GET response: - body: '{"id": 28254, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", + body: '{"id": 133362, "label": "go-mysql-test-def-updated", "type": "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "active", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28254-15158-mysql-primary.servers.linodedb.net", - "secondary": "lin-28254-15158-mysql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "semi_synch", "port": 3306, "updates": - {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, - "week_of_month": 3}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133362-17405-mysql-primary.servers.linodedb.net", + "secondary": "lin-133362-17405-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": {"172.105.36.137": "primary", "172.105.63.12": + "failover", "194.195.119.223": "failover"}, "ssl_connection": false, "replication_type": + "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": + 8, "day_of_week": 3, "week_of_month": 3}}' headers: Access-Control-Allow-Credentials: - "true" @@ -23126,16 +28312,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "646" + - "801" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:19:45 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -23151,7 +28340,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -23167,7 +28356,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/28254 + url: https://api.linode.com/v4beta/databases/mysql/instances/133362 method: DELETE response: body: '{}' @@ -23183,15 +28372,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "2" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:20:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -23206,7 +28399,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" 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 817811e33..f2ce11752 100644 --- a/test/integration/fixtures/TestDatabase_Postgres_Suite.yaml +++ b/test/integration/fixtures/TestDatabase_Postgres_Suite.yaml @@ -15,176 +15,243 @@ interactions: method: GET response: body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities": - ["Linodes", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud - Firewall", "Vlans", "Block Storage Migrations", "Managed Databases"], "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, + ["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"}}, {"id": "ca-central", "label": "Toronto, CA", - "country": "ca", "capabilities": ["Linodes", "NodeBalancers", "Block Storage", - "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed - Databases"], "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"}, "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"}}, {"id": "ap-southeast", - "label": "Sydney, AU", "country": "au", "capabilities": ["Linodes", "NodeBalancers", - "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", - "Managed Databases"], "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"}, "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, 1234::5678"}}, - {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities": - ["Linodes", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", - "Cloud Firewall", "Vlans", "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"}}, - {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities": ["Linodes", - "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "Managed Databases", "Premium Plans"], "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"}}, - {"id": "fr-par", "label": "Paris, FR", "country": "fr", "capabilities": ["Linodes", - "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "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"}}, - {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities": ["Linodes", - "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "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"}, "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"}}, - {"id": "br-gru", "label": "Sao Paulo, BR", "country": "br", "capabilities": - ["Linodes", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", - "Cloud Firewall", "Vlans", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": - "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, - 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "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, 1234::5678, 1234::5678"}}, - {"id": "nl-ams", "label": "Amsterdam, NL", "country": "nl", "capabilities": - ["Linodes", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", - "Cloud Firewall", "Vlans", "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", + 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"}}, {"id": "se-sto", "label": "Stockholm, SE", - "country": "se", "capabilities": ["Linodes", "NodeBalancers", "Block Storage", - "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "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"}, "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, 1234::5678"}}, {"id": "in-maa", - "label": "Chennai, IN", "country": "in", "capabilities": ["Linodes", "NodeBalancers", + 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", - "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"}}, - {"id": "jp-osa", "label": "Osaka, JP", "country": "jp", "capabilities": ["Linodes", - "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "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, + "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": + 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, 1234::5678, 1234::5678"}}, - {"id": "it-mil", "label": "Milan, IT", "country": "it", "capabilities": ["Linodes", - "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "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"}, "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, 1234::5678, 1234::5678"}}, - {"id": "us-mia", "label": "Miami, FL", "country": "us", "capabilities": ["Linodes", - "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "Premium Plans"], "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"}, "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, 1234::5678, 1234::5678"}}, - {"id": "id-cgk", "label": "Jakarta, ID", "country": "id", "capabilities": ["Linodes", - "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "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"}, "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, 1234::5678, 1234::5678"}}, - {"id": "us-lax", "label": "Los Angeles, CA", "country": "us", "capabilities": - ["Linodes", "NodeBalancers", "Block Storage", "Object Storage", "Cloud Firewall", - "Vlans", "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"}, "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, 1234::5678, 1234::5678"}}, - {"id": "us-central", "label": "Dallas, TX", "country": "us", "capabilities": - ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", - "Block Storage Migrations", "Managed Databases"], "status": "ok", "resolvers": + 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"}}, {"id": "us-west", - "label": "Fremont, CA", "country": "us", "capabilities": ["Linodes", "NodeBalancers", - "Block Storage", "Kubernetes", "Cloud Firewall", "Block Storage Migrations", - "Managed Databases"], "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"}}, {"id": "us-southeast", "label": "Atlanta, GA", - "country": "us", "capabilities": ["Linodes", "NodeBalancers", "Block Storage", + 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"], "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, + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5, + 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, - 1234::5678, 1234::5678, 1234::5678"}}, {"id": "us-east", "label": "Newark, - NJ", "country": "us", "capabilities": ["Linodes", "NodeBalancers", "Block Storage", - "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Bare Metal", - "Vlans", "Block Storage Migrations", "Managed Databases"], "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"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label": + "Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", + "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "status": + "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5, 50.116.58.5, + 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4, 207.192.69.5", + "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "eu-west", "label": "London, UK", "country": "gb", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5, + 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20, + 109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country": + "sg", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "139.162.11.5, 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, + 139.162.21.5, 139.162.27.5, 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, - 1234::5678, 1234::5678, 1234::5678, 1234::5678"}}, {"id": "eu-west", - "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "NodeBalancers", - "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", - "Managed Databases"], "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"}}, - {"id": "ap-south", "label": "Singapore, SG", "country": "sg", "capabilities": - ["Linodes", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", - "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed - Databases"], "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"}}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", - "capabilities": ["Linodes", "NodeBalancers", "Block Storage", "Object Storage", - "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", - "Managed Databases"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5, + 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"}}, {"id": "ap-northeast", "label": "Tokyo, JP", - "country": "jp", "capabilities": ["Linodes", "NodeBalancers", "Block Storage", - "Kubernetes", "Cloud Firewall", "Block Storage Migrations", "Managed Databases"], - "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"}}], - "page": 1, "pages": 1, "results": 24}' + 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}' headers: Access-Control-Allow-Credentials: - "true" @@ -197,19 +264,23 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=900 - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:20:02 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: @@ -220,7 +291,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -239,13 +310,2023 @@ interactions: url: https://api.linode.com/v4beta/databases/postgresql/instances method: POST response: - body: '{"id": 28228, "label": "go-postgres-testing-def", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "provisioning", - "encrypted": false, "allow_list": ["203.0.113.1", "192.0.1.0/24"], "cluster_size": - 3, "hosts": {"primary": null, "secondary": null}, "ssl_connection": false, "replication_type": - "asynch", "replication_commit_type": "local", "port": 5432, "updates": {"frequency": - "weekly", "duration": 3, "hour_of_day": 0, "day_of_week": null, "week_of_month": - null}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + 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"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "652" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Mon, 24 Jun 2024 19:20:02 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_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"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}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-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:20: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:20: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:20: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:21: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:21: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:21: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:21: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:22: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:22: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:22: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:22: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:23: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:23: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:23: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:23: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:24: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:24: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:24: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:24: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:25: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:25: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:25: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:25: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:26: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:26: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:26: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:26: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:27: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:27: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" @@ -258,21 +2339,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "581" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:27: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 + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -281,7 +2367,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -298,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":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database"}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -320,16 +2406,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:27:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -345,7 +2434,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -362,15 +2451,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -384,16 +2473,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:28:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -409,7 +2501,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -426,15 +2518,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -448,16 +2540,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:28:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -473,7 +2568,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -490,15 +2585,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -512,16 +2607,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:28:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -537,7 +2635,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -554,15 +2652,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -576,16 +2674,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:28:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -601,7 +2702,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -618,15 +2719,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -640,16 +2741,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:29:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -665,7 +2769,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -682,15 +2786,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -704,16 +2808,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:29:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -729,7 +2836,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -746,15 +2853,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -768,16 +2875,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:29:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -793,7 +2903,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -810,15 +2920,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -832,16 +2942,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:29:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -857,7 +2970,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -874,15 +2987,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -896,16 +3009,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:30:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -921,7 +3037,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -938,15 +3054,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -960,16 +3076,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:30:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -985,7 +3104,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1002,15 +3121,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1024,16 +3143,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:30:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1049,7 +3171,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1066,15 +3188,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1088,16 +3210,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:30:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1113,7 +3238,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1130,15 +3255,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1152,16 +3277,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:31:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1177,7 +3305,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1194,15 +3322,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1216,16 +3344,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:31:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1241,7 +3372,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1258,15 +3389,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1280,16 +3411,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:31:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1305,7 +3439,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1322,15 +3456,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1344,16 +3478,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:31:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1369,7 +3506,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1386,15 +3523,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1408,16 +3545,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:32:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1433,7 +3573,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1450,15 +3590,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1472,16 +3612,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:32:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1497,7 +3640,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1514,15 +3657,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1536,16 +3679,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:32:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1561,7 +3707,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1578,15 +3724,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1600,16 +3746,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:32:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1625,7 +3774,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1642,15 +3791,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1664,16 +3813,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:33:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1689,7 +3841,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1706,15 +3858,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1728,16 +3880,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:33:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1753,7 +3908,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1770,15 +3925,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1792,16 +3947,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:33:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1817,7 +3975,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1834,15 +3992,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1856,16 +4014,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:33:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1881,7 +4042,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1898,15 +4059,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1920,16 +4081,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:34:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -1945,7 +4109,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1962,15 +4126,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -1984,16 +4148,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:34:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2009,7 +4176,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2026,15 +4193,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2048,16 +4215,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:34:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2073,7 +4243,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2090,15 +4260,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2112,16 +4282,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:34:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2137,7 +4310,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2154,15 +4327,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2176,16 +4349,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:35:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2201,7 +4377,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2218,15 +4394,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2240,16 +4416,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:35:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2265,7 +4444,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2282,15 +4461,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2304,16 +4483,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:35:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2329,7 +4511,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2346,15 +4528,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2368,16 +4550,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:35:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2393,7 +4578,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2410,15 +4595,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2432,16 +4617,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:36:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2457,7 +4645,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2474,15 +4662,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2496,16 +4684,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:36:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2521,7 +4712,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2538,15 +4729,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2560,16 +4751,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:36:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2585,7 +4779,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2602,15 +4796,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2624,16 +4818,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:36:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2649,7 +4846,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2666,15 +4863,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2688,16 +4885,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:37:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2713,7 +4913,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2730,15 +4930,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2752,16 +4952,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:37:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2777,7 +4980,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2794,15 +4997,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2816,16 +5019,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:37:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2841,7 +5047,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2858,15 +5064,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2880,16 +5086,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:37:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2905,7 +5114,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2922,15 +5131,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -2944,16 +5153,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:38:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -2969,7 +5181,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2986,15 +5198,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3008,16 +5220,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:38:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3033,7 +5248,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3050,15 +5265,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3072,16 +5287,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:38:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3097,7 +5315,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3114,15 +5332,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3136,16 +5354,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:38:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3161,7 +5382,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3178,15 +5399,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3200,16 +5421,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:39:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3225,7 +5449,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3242,15 +5466,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3264,16 +5488,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:39:18 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3289,7 +5516,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3306,15 +5533,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3328,16 +5555,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:39:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3353,7 +5583,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3370,15 +5600,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3392,16 +5622,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:39:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3417,7 +5650,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3434,15 +5667,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3456,16 +5689,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:40:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3481,7 +5717,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3498,15 +5734,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3520,16 +5756,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:40:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3545,7 +5784,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3562,15 +5801,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3584,16 +5823,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:40:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3609,7 +5851,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3626,15 +5868,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3648,16 +5890,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:40:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3673,7 +5918,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3690,15 +5935,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3712,16 +5957,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:41:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3737,7 +5985,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3754,15 +6002,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3776,16 +6024,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:41:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3801,7 +6052,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3818,15 +6069,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3840,16 +6091,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:41:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3865,7 +6119,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3882,15 +6136,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3904,16 +6158,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:41:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3929,7 +6186,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3946,15 +6203,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -3968,16 +6225,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:42:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -3993,7 +6253,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4010,15 +6270,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4032,16 +6292,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:42:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4057,7 +6320,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4074,15 +6337,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4096,16 +6359,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:42:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4121,7 +6387,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4138,15 +6404,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4160,16 +6426,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:42:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4185,7 +6454,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4202,15 +6471,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4224,16 +6493,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:43:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4249,7 +6521,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4266,15 +6538,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4288,16 +6560,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:43:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4313,7 +6588,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4330,15 +6605,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4352,16 +6627,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:43:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4377,7 +6655,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4394,15 +6672,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4416,16 +6694,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:43:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4441,7 +6722,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4458,15 +6739,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4480,16 +6761,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:44:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4505,7 +6789,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4522,15 +6806,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4544,16 +6828,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:44:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4569,7 +6856,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4586,15 +6873,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4608,16 +6895,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:44:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4633,7 +6923,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4650,15 +6940,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4672,16 +6962,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:44:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4697,7 +6990,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4714,15 +7007,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4736,16 +7029,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:45:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4761,7 +7057,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4778,15 +7074,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4800,16 +7096,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:45:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4825,7 +7124,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4842,15 +7141,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4864,16 +7163,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:45:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4889,7 +7191,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4906,15 +7208,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4928,16 +7230,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:45:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -4953,7 +7258,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4970,15 +7275,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -4992,16 +7297,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:46:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5017,7 +7325,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5034,15 +7342,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5056,16 +7364,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:46:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5081,7 +7392,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5098,15 +7409,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5120,16 +7431,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:46:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5145,7 +7459,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5162,15 +7476,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5184,16 +7498,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:46:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5209,7 +7526,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5226,15 +7543,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5248,16 +7565,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:47:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5273,7 +7593,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5290,15 +7610,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5312,16 +7632,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:47:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5337,7 +7660,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5354,15 +7677,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5376,16 +7699,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:47:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5401,7 +7727,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5418,15 +7744,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5440,16 +7766,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:47:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5465,7 +7794,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5482,15 +7811,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5504,16 +7833,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:48:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5529,7 +7861,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5546,15 +7878,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5568,16 +7900,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:48:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5593,7 +7928,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5610,15 +7945,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5632,16 +7967,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:48:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5657,7 +7995,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5674,15 +8012,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5696,16 +8034,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:48:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5721,7 +8062,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5738,15 +8079,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5760,16 +8101,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:49:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5785,7 +8129,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5802,15 +8146,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5824,16 +8168,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:49:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5849,7 +8196,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5866,15 +8213,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5888,16 +8235,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:49:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5913,7 +8263,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5930,15 +8280,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -5952,16 +8302,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:49:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -5977,7 +8330,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5994,15 +8347,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6016,16 +8369,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:50:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6041,7 +8397,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6058,15 +8414,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6080,16 +8436,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:50:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6105,7 +8464,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6122,15 +8481,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6144,16 +8503,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:50:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6169,7 +8531,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6186,15 +8548,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6208,16 +8570,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:50:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6233,7 +8598,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6250,15 +8615,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6272,16 +8637,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:51:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6297,7 +8665,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6314,15 +8682,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6336,16 +8704,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:51:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6361,7 +8732,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6378,15 +8749,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6400,16 +8771,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:51:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6425,7 +8799,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6442,15 +8816,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6464,16 +8838,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:51:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6489,7 +8866,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6506,15 +8883,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6528,16 +8905,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:52:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6553,7 +8933,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6570,15 +8950,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6592,16 +8972,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:52:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6617,7 +9000,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6634,15 +9017,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6656,16 +9039,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:52:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6681,7 +9067,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6698,15 +9084,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6720,16 +9106,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:52:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6745,7 +9134,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6762,15 +9151,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6784,16 +9173,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:53:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6809,7 +9201,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6826,15 +9218,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6848,16 +9240,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:53:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6873,7 +9268,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6890,15 +9285,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6912,16 +9307,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:53:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -6937,7 +9335,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6954,15 +9352,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -6976,16 +9374,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:53:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7001,7 +9402,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7018,15 +9419,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7040,16 +9441,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:54:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7065,7 +9469,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7082,15 +9486,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7104,16 +9508,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:54:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7129,7 +9536,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7146,15 +9553,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7168,16 +9575,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:54:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7193,7 +9603,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7210,15 +9620,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7232,16 +9642,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:54:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7257,7 +9670,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7274,15 +9687,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7296,16 +9709,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:55:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7321,7 +9737,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7338,15 +9754,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7360,16 +9776,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:55:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7385,7 +9804,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7402,15 +9821,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7424,16 +9843,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:55:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7449,7 +9871,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7466,15 +9888,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7488,16 +9910,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:55:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7513,7 +9938,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7530,15 +9955,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7552,16 +9977,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:56:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7577,7 +10005,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7594,15 +10022,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7616,16 +10044,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:56:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7641,7 +10072,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7658,15 +10089,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7680,16 +10111,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:56:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7705,7 +10139,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7722,15 +10156,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7744,16 +10178,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:56:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7769,7 +10206,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7786,15 +10223,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7808,16 +10245,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:57:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7833,7 +10273,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7850,15 +10290,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7872,16 +10312,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:57:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7897,7 +10340,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7914,15 +10357,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -7936,16 +10379,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:57:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -7961,7 +10407,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7978,15 +10424,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -8000,16 +10446,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:57:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8025,7 +10474,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8042,15 +10491,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -8064,16 +10513,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:58:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8089,7 +10541,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8106,15 +10558,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -8128,16 +10580,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:58:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8153,7 +10608,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8170,15 +10625,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -8192,16 +10647,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:58:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8217,7 +10675,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8234,15 +10692,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -8256,16 +10714,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:58:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8281,7 +10742,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8298,15 +10759,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -8320,16 +10781,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:59:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8345,7 +10809,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8362,15 +10826,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -8384,16 +10848,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:59:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8409,7 +10876,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8426,15 +10893,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -8448,16 +10915,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:59:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8473,7 +10943,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8490,15 +10960,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -8512,16 +10982,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 19:59:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8537,7 +11010,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8554,15 +11027,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -8576,16 +11049,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:00:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8601,7 +11077,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8618,15 +11094,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -8640,16 +11116,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:00:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8665,7 +11144,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8682,15 +11161,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -8704,16 +11183,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:00:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8729,7 +11211,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8746,15 +11228,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -8768,16 +11250,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:00:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8793,7 +11278,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8810,15 +11295,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -8832,16 +11317,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:01:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8857,7 +11345,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8874,15 +11362,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -8896,16 +11384,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:01:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8921,7 +11412,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8938,15 +11429,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -8960,16 +11451,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:01:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -8985,7 +11479,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9002,15 +11496,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -9024,16 +11518,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:01:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9049,7 +11546,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9066,15 +11563,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -9088,16 +11585,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:02:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9113,7 +11613,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9130,15 +11630,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -9152,16 +11652,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:02:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9177,7 +11680,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9194,15 +11697,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -9216,16 +11719,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:02:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9241,7 +11747,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9258,15 +11764,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -9280,16 +11786,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:02:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9305,7 +11814,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9322,15 +11831,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, + 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": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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: @@ -9344,16 +11853,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:03:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9369,7 +11881,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9386,15 +11898,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2023-09-04T04:34:22"},"entity.id":28228,"entity.type":"database","id":{"+gte":555065068}}' + - '{"+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": 555065068, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, - "duration": 2139, "action": "database_create", "username": "zliang27", "entity": - {"label": "go-postgres-testing-def", "id": 28228, "type": "database", "url": - "/v4/databases/postgresql/instances/28228"}, "status": "finished", "secondary_entity": + 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: @@ -9408,16 +11920,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "459" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:03:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9433,7 +11948,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9449,18 +11964,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances + X-Filter: + - '{"+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": 28228, "label": "go-postgres-testing-def", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "active", - "encrypted": false, "allow_list": ["203.0.113.1", "192.0.1.0/24"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "weekly", "duration": 3, "hour_of_day": - 6, "day_of_week": 6, "week_of_month": null}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}], "page": 1, "pages": 1, "results": 1}' + 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" @@ -9473,23 +11987,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "725" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -9498,7 +12015,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9514,18 +12031,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + X-Filter: + - '{"+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: '{"id": 28228, "label": "go-postgres-testing-def", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "active", - "encrypted": false, "allow_list": ["203.0.113.1", "192.0.1.0/24"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "weekly", "duration": 3, "hour_of_day": - 6, "day_of_week": 6, "week_of_month": null}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + 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" @@ -9538,23 +12054,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "676" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -9563,14 +12082,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "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}}' + body: "" form: {} headers: Accept: @@ -9579,18 +12098,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 - method: PUT + X-Filter: + - '{"+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: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + 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" @@ -9603,21 +12121,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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: - - databases:read_write + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -9626,7 +12149,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9643,17 +12166,16 @@ interactions: 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":28228,"entity.type":"database"}' + - '{"+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": 555074468, "created": "2018-01-02T03:04:05", "seen": false, + 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_update", "username": "zliang27", "entity": - {"label": "go-postgres-testing-def-updated", "id": 28228, "type": "database", - "url": "/v4/databases/postgresql/instances/28228"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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" @@ -9666,16 +12188,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "472" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:04:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9691,7 +12216,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9708,17 +12233,16 @@ interactions: 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":28228,"entity.type":"database","id":{"+gte":555074468}}' + - '{"+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": 555074468, "created": "2018-01-02T03:04:05", "seen": false, + 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_update", "username": "zliang27", "entity": - {"label": "go-postgres-testing-def-updated", "id": 28228, "type": "database", - "url": "/v4/databases/postgresql/instances/28228"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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" @@ -9731,16 +12255,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "472" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:04:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9756,7 +12283,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9773,17 +12300,16 @@ interactions: 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":28228,"entity.type":"database","id":{"+gte":555074468}}' + - '{"+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": 555074468, "created": "2018-01-02T03:04:05", "seen": false, + 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_update", "username": "zliang27", "entity": - {"label": "go-postgres-testing-def-updated", "id": 28228, "type": "database", - "url": "/v4/databases/postgresql/instances/28228"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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" @@ -9796,16 +12322,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "472" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:04:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9821,7 +12350,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9838,17 +12367,16 @@ interactions: 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":28228,"entity.type":"database","id":{"+gte":555074468}}' + - '{"+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": 555074468, "created": "2018-01-02T03:04:05", "seen": false, + 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_update", "username": "zliang27", "entity": - {"label": "go-postgres-testing-def-updated", "id": 28228, "type": "database", - "url": "/v4/databases/postgresql/instances/28228"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": + {"label": "go-postgres-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" @@ -9861,16 +12389,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "472" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:05:02 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9886,7 +12417,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9903,15 +12434,15 @@ interactions: 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":28228,"entity.type":"database","id":{"+gte":555074468}}' + - '{"+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": 555074468, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, - "duration": 73, "action": "database_update", "username": "zliang27", "entity": - {"label": "go-postgres-testing-def-updated", "id": 28228, "type": "database", - "url": "/v4/databases/postgresql/instances/28228"}, "status": "finished", "secondary_entity": + 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: @@ -9925,16 +12456,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "465" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:05:17 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -9950,7 +12484,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9966,18 +12500,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + X-Filter: + - '{"+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: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "active", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + 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" @@ -9990,23 +12523,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "687" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -10015,7 +12551,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10031,10 +12567,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228/ssl + X-Filter: + - '{"+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: '{"ca_certificate": null}' + 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" @@ -10047,23 +12590,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "24" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -10072,7 +12618,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10088,10 +12634,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228/credentials + X-Filter: + - '{"+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: '{"username": "linpostgres", "password": "GcT0JHqj$X7fOvZ3"}' + 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" @@ -10104,23 +12657,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "59" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -10129,7 +12685,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10145,10 +12701,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228/credentials/reset - method: POST + X-Filter: + - '{"+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: '{}' + 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" @@ -10161,21 +12724,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "2" + - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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: - - databases:read_write + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -10184,7 +12752,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10200,10 +12768,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228/credentials + X-Filter: + - '{"+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: '{"username": "linpostgres", "password": "1Wr5Hyv0etHT0y-X"}' + 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" @@ -10216,23 +12791,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "59" + - "463" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -10241,7 +12819,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10257,10 +12835,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228/patch - method: POST + url: https://api.linode.com/v4beta/databases/postgresql/instances + method: GET response: - body: '{}' + 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" @@ -10273,21 +12861,25 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=60, s-maxage=60 - Content-Length: - - "2" + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -10296,7 +12888,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10312,18 +12904,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + 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" @@ -10336,16 +12929,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "833" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:06:33 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -10361,14 +12957,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: "" + 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: @@ -10377,18 +12973,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 - method: GET + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 + method: PUT response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -10401,23 +12997,25 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:06:35 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -10426,7 +13024,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10442,18 +13040,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + 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: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + 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" @@ -10466,23 +13064,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "476" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -10491,7 +13092,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10507,18 +13108,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + 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: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + 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" @@ -10531,23 +13131,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -10556,7 +13159,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10572,18 +13175,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + 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" @@ -10596,16 +13200,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "844" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:07:21 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -10621,7 +13228,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10637,18 +13244,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403/ssl method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + body: '{"ca_certificate": null}' headers: Access-Control-Allow-Credentials: - "true" @@ -10661,16 +13260,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "24" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:07:21 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -10686,7 +13288,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10702,18 +13304,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403/credentials method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + body: '{"username": "linpostgres", "password": "Pebm73oJqGDF$IoD"}' headers: Access-Control-Allow-Credentials: - "true" @@ -10726,16 +13320,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "59" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:07:22 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -10751,7 +13348,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10767,18 +13364,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 - method: GET + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403/credentials/reset + method: POST response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + body: '{}' headers: Access-Control-Allow-Credentials: - "true" @@ -10791,23 +13380,25 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "2" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:12: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 + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -10816,7 +13407,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10832,18 +13423,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403/credentials method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + body: '{"username": "linpostgres", "password": "ehCx3wLk5RMtee$S"}' headers: Access-Control-Allow-Credentials: - "true" @@ -10856,16 +13439,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "59" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:12:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -10881,7 +13467,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10897,18 +13483,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 - method: GET + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403/patch + method: POST response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + body: '{}' headers: Access-Control-Allow-Credentials: - "true" @@ -10921,23 +13499,25 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "2" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:17: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 + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -10946,7 +13526,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10962,18 +13542,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -10986,16 +13566,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:17:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11011,7 +13594,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11027,18 +13610,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -11051,16 +13634,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:18:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11076,7 +13662,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11092,18 +13678,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -11116,16 +13702,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:18:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11141,7 +13730,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11157,18 +13746,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -11181,16 +13770,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:18:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11206,7 +13798,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11222,18 +13814,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -11246,16 +13838,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:18:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11271,7 +13866,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11287,18 +13882,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -11311,16 +13906,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:19:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11336,7 +13934,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11352,18 +13950,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -11376,16 +13974,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:19:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11401,7 +14002,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11417,18 +14018,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -11441,16 +14042,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:19:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11466,7 +14070,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11482,18 +14086,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -11506,16 +14110,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:19:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11531,7 +14138,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11547,18 +14154,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -11571,16 +14178,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:20:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11596,7 +14206,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11612,18 +14222,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -11636,16 +14246,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:20:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11661,7 +14274,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11677,18 +14290,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -11701,16 +14314,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:20:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11726,7 +14342,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11742,18 +14358,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -11766,16 +14382,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:20:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11791,7 +14410,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11807,18 +14426,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -11831,16 +14450,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:21:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11856,7 +14478,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11872,18 +14494,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -11896,16 +14518,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:21:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11921,7 +14546,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -11937,18 +14562,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -11961,16 +14586,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:21:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -11986,7 +14614,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12002,18 +14630,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -12026,16 +14654,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:21:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -12051,7 +14682,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12067,18 +14698,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -12091,16 +14722,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:22:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -12116,7 +14750,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12132,18 +14766,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -12156,16 +14790,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:22:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -12181,7 +14818,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12197,18 +14834,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -12221,16 +14858,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:22:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -12246,7 +14886,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12262,18 +14902,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -12286,16 +14926,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:22:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -12311,7 +14954,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12327,18 +14970,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -12351,16 +14994,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:23:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -12376,7 +15022,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12392,18 +15038,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -12416,16 +15062,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:23:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -12441,7 +15090,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12457,18 +15106,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -12481,16 +15130,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:23:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -12506,7 +15158,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12522,18 +15174,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -12546,16 +15198,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:23:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -12571,7 +15226,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12587,18 +15242,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -12611,16 +15266,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:24:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -12636,7 +15294,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12652,18 +15310,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -12676,16 +15334,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:24:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -12701,7 +15362,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12717,18 +15378,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -12741,16 +15402,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:24:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -12766,7 +15430,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12782,18 +15446,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -12806,16 +15470,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:24:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -12831,7 +15498,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12847,18 +15514,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -12871,16 +15538,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:25:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -12896,7 +15566,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12912,18 +15582,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -12936,16 +15606,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:25:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -12961,7 +15634,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -12977,18 +15650,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -13001,16 +15674,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:25:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13026,7 +15702,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13042,18 +15718,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -13066,16 +15742,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:25:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13091,7 +15770,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13107,18 +15786,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -13131,16 +15810,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:26:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13156,7 +15838,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13172,18 +15854,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -13196,16 +15878,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:26:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13221,7 +15906,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13237,18 +15922,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -13261,16 +15946,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:26:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13286,7 +15974,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13302,18 +15990,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -13326,16 +16014,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:26:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13351,7 +16042,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13367,18 +16058,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -13391,16 +16082,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:27:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13416,7 +16110,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13432,18 +16126,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -13456,16 +16150,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:27:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13481,7 +16178,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13497,18 +16194,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -13521,16 +16218,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "758" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:27:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13546,7 +16246,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13562,18 +16262,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -13586,16 +16286,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:27:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13611,7 +16314,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13627,18 +16330,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -13651,16 +16354,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:28:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13676,7 +16382,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13692,18 +16398,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -13716,16 +16422,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:28:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13741,7 +16450,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13757,18 +16466,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -13781,16 +16490,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:28:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13806,7 +16518,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13822,18 +16534,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -13846,16 +16558,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:28:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13871,7 +16586,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13887,18 +16602,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -13911,16 +16626,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:29:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -13936,7 +16654,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -13952,18 +16670,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -13976,16 +16694,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:29:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14001,7 +16722,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14017,18 +16738,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -14041,16 +16762,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:29:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14066,7 +16790,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14082,18 +16806,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -14106,16 +16830,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:29:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14131,7 +16858,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14147,18 +16874,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -14171,16 +16898,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:30:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14196,7 +16926,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14212,18 +16942,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -14236,16 +16966,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:30:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14261,7 +16994,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14277,18 +17010,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -14301,16 +17034,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:30:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14326,7 +17062,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14342,18 +17078,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -14366,16 +17102,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:30:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14391,7 +17130,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14407,18 +17146,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -14431,16 +17170,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:31:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14456,7 +17198,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14472,18 +17214,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -14496,16 +17238,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:31:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14521,7 +17266,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14537,18 +17282,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -14561,16 +17306,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:31:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14586,7 +17334,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14602,18 +17350,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -14626,16 +17374,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:31:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14651,7 +17402,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14667,18 +17418,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -14691,16 +17442,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:32:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14716,7 +17470,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14732,18 +17486,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -14756,16 +17510,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:32:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14781,7 +17538,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14797,18 +17554,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -14821,16 +17578,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:32:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14846,7 +17606,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14862,18 +17622,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -14886,16 +17646,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:32:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14911,7 +17674,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14927,18 +17690,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -14951,16 +17714,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:33:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -14976,7 +17742,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -14992,18 +17758,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -15016,16 +17782,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:33:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15041,7 +17810,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15057,18 +17826,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -15081,16 +17850,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:33:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15106,7 +17878,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15122,18 +17894,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -15146,16 +17918,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:33:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15171,7 +17946,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15187,18 +17962,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -15211,16 +17986,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:34:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15236,7 +18014,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15252,18 +18030,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -15276,16 +18054,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:34:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15301,7 +18082,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15317,18 +18098,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -15341,16 +18122,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:34:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15366,7 +18150,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15382,18 +18166,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -15406,16 +18190,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:34:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15431,7 +18218,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15447,18 +18234,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -15471,16 +18258,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:35:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15496,7 +18286,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15512,18 +18302,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -15536,16 +18326,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:35:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15561,7 +18354,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15577,18 +18370,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -15601,16 +18394,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:35:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15626,7 +18422,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15642,18 +18438,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -15666,16 +18462,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:35:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15691,7 +18490,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15707,18 +18506,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -15731,16 +18530,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:36:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15756,7 +18558,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15772,18 +18574,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -15796,16 +18598,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:36:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15821,7 +18626,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15837,18 +18642,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -15861,16 +18666,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:36:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15886,7 +18694,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15902,18 +18710,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -15926,16 +18734,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:36:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -15951,7 +18762,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -15967,18 +18778,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -15991,16 +18802,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:37:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16016,7 +18830,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16032,18 +18846,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -16056,16 +18870,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:37:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16081,7 +18898,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16097,18 +18914,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -16121,16 +18938,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:37:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16146,7 +18966,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16162,18 +18982,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -16186,16 +19006,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:37:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16211,7 +19034,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16227,18 +19050,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -16251,16 +19074,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:38:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16276,7 +19102,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16292,18 +19118,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -16316,16 +19142,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:38:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16341,7 +19170,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16357,18 +19186,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -16381,16 +19210,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:38:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16406,7 +19238,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16422,18 +19254,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -16446,16 +19278,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:38:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16471,7 +19306,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16487,18 +19322,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -16511,16 +19346,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:39:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16536,7 +19374,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16552,18 +19390,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -16576,16 +19414,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:39:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16601,7 +19442,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16617,18 +19458,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -16641,16 +19482,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:39:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16666,7 +19510,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16682,18 +19526,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -16706,16 +19550,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:39:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16731,7 +19578,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16747,18 +19594,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -16771,16 +19618,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:40:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16796,7 +19646,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16812,18 +19662,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -16836,16 +19686,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:40:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16861,7 +19714,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16877,18 +19730,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -16901,16 +19754,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:40:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16926,7 +19782,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -16942,18 +19798,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -16966,16 +19822,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:40:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -16991,7 +19850,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17007,18 +19866,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -17031,16 +19890,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:41:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17056,7 +19918,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17072,18 +19934,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -17096,16 +19958,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:41:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17121,7 +19986,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17137,18 +20002,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -17161,16 +20026,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:41:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17186,7 +20054,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17202,18 +20070,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -17226,16 +20094,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:41:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17251,7 +20122,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17267,18 +20138,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -17291,16 +20162,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:42:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17316,7 +20190,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17332,18 +20206,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -17356,16 +20230,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:42:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17381,7 +20258,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17397,18 +20274,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -17421,16 +20298,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:42:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17446,7 +20326,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17462,18 +20342,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -17486,16 +20366,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:42:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17511,7 +20394,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17527,18 +20410,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -17551,16 +20434,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:43:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17576,7 +20462,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17592,18 +20478,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -17616,16 +20502,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:43:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17641,7 +20530,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17657,18 +20546,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -17681,16 +20570,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:43:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17706,7 +20598,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17722,18 +20614,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -17746,16 +20638,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:43:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17771,7 +20666,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17787,18 +20682,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -17811,16 +20706,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:44:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17836,7 +20734,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17852,18 +20750,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -17876,16 +20774,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:44:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17901,7 +20802,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17917,18 +20818,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -17941,16 +20842,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:44:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -17966,7 +20870,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -17982,18 +20886,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -18006,16 +20910,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:44:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18031,7 +20938,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18047,18 +20954,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -18071,16 +20978,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:45:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18096,7 +21006,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18112,18 +21022,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -18136,16 +21046,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:45:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18161,7 +21074,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18177,18 +21090,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -18201,16 +21114,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:45:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18226,7 +21142,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18242,18 +21158,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -18266,16 +21182,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:45:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18291,7 +21210,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18307,18 +21226,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -18331,16 +21250,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:46:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18356,7 +21278,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18372,18 +21294,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -18396,16 +21318,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:46:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18421,7 +21346,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18437,18 +21362,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -18461,16 +21386,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:46:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18486,7 +21414,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18502,18 +21430,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -18526,16 +21454,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:46:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18551,7 +21482,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18567,18 +21498,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -18591,16 +21522,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:47:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18616,7 +21550,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18632,18 +21566,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -18656,16 +21590,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:47:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18681,7 +21618,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18697,18 +21634,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -18721,16 +21658,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:47:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18746,7 +21686,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18762,18 +21702,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -18786,16 +21726,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "689" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:47:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18811,7 +21754,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18827,18 +21770,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "active", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -18851,16 +21794,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "687" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:48:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -18876,14 +21822,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: '{"label":"postgresbackupforlinodego","target":"primary"}' + body: "" form: {} headers: Accept: @@ -18892,10 +21838,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228/backups - method: POST + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 + method: GET response: - body: '{}' + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -18908,21 +21862,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "2" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -18931,7 +21890,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -18947,10 +21906,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228/backups + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"data": [], "page": 1, "pages": 1, "results": 0}' + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -18963,23 +21930,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "49" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -18988,7 +21958,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19004,10 +21974,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228/backups + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"data": [], "page": 1, "pages": 1, "results": 0}' + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -19020,23 +21998,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "49" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -19045,7 +22026,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19061,10 +22042,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228/backups + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"data": [], "page": 1, "pages": 1, "results": 0}' + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -19077,23 +22066,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "49" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -19102,7 +22094,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19118,10 +22110,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228/backups + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"data": [], "page": 1, "pages": 1, "results": 0}' + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -19134,23 +22134,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "49" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -19159,7 +22162,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19175,10 +22178,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228/backups + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"data": [], "page": 1, "pages": 1, "results": 0}' + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -19191,23 +22202,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "49" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -19216,7 +22230,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19232,10 +22246,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228/backups + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"data": [], "page": 1, "pages": 1, "results": 0}' + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -19248,23 +22270,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "49" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -19273,7 +22298,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19289,10 +22314,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228/backups + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"data": [], "page": 1, "pages": 1, "results": 0}' + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -19305,23 +22338,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "49" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -19330,7 +22366,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19346,10 +22382,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228/backups + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"data": [], "page": 1, "pages": 1, "results": 0}' + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -19362,23 +22406,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "49" + - "759" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -19387,7 +22434,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19403,11 +22450,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228/backups + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"data": [{"id": 805540, "type": "snapshot", "label": "postgresbackupforlinodego", - "created": "2018-01-02T03:04:05"}], "page": 1, "pages": 1, "results": 1}' + 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" @@ -19420,23 +22475,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "155" + - "845" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -19445,14 +22503,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"label":"postgresbackupforlinodego","target":"primary"}' form: {} headers: Accept: @@ -19461,11 +22519,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228/backups/805540 - method: GET + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403/backups + method: POST response: - body: '{"id": 805540, "type": "snapshot", "label": "postgresbackupforlinodego", - "created": "2018-01-02T03:04:05"}' + body: '{}' headers: Access-Control-Allow-Credentials: - "true" @@ -19478,21 +22535,23 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "106" + - "2" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:50:46 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: @@ -19503,7 +22562,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19519,18 +22578,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403/backups method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "backing_up", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -19543,23 +22594,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "691" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -19568,7 +22622,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19584,18 +22638,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403/backups method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "backing_up", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -19608,23 +22654,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "691" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -19633,7 +22682,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19649,18 +22698,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403/backups method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "backing_up", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -19673,23 +22714,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "691" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -19698,7 +22742,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19714,18 +22758,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403/backups method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "backing_up", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -19738,23 +22774,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "691" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -19763,7 +22802,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19779,18 +22818,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403/backups method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "backing_up", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -19803,23 +22834,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "691" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -19828,7 +22862,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19844,18 +22878,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403/backups method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "backing_up", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -19868,23 +22894,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "691" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -19893,7 +22922,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19909,18 +22938,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403/backups method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "backing_up", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -19933,23 +22954,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "691" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -19958,7 +22982,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -19974,18 +22998,11 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403/backups method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "backing_up", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + 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" @@ -19998,23 +23015,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "691" + - "156" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -20023,7 +23043,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -20039,18 +23059,11 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403/backups/1425482 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "backing_up", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + body: '{"id": 1425482, "type": "snapshot", "label": "postgresbackupforlinodego", + "created": "2018-01-02T03:04:05"}' headers: Access-Control-Allow-Credentials: - "true" @@ -20063,23 +23076,26 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "691" + - "107" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -20088,7 +23104,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -20104,18 +23120,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "backing_up", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -20128,16 +23144,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "691" + - "761" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:53:04 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -20153,7 +23172,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -20169,18 +23188,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: GET response: - body: '{"id": 28228, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", + body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "active", - "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], "cluster_size": - 3, "hosts": {"primary": "lin-28228-11378-pgsql-primary.servers.linodedb.net", - "secondary": "lin-28228-11378-pgsql-primary-private.servers.linodedb.net"}, - "ssl_connection": false, "replication_type": "asynch", "replication_commit_type": - "local", "port": 5432, "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "created": "2018-01-02T03:04:05", - "updated": "2018-01-02T03:04:05"}' + "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], + "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", + "secondary": "lin-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" @@ -20193,16 +23213,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "687" + - "845" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:53:19 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -20218,7 +23241,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -20234,7 +23257,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/28228 + url: https://api.linode.com/v4beta/databases/postgresql/instances/133403 method: DELETE response: body: '{}' @@ -20250,15 +23273,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "2" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 20:53:36 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -20273,7 +23300,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK diff --git a/test/integration/fixtures/TestDatabase_Type.yaml b/test/integration/fixtures/TestDatabase_Type.yaml index a86c278bb..df63ce296 100644 --- a/test/integration/fixtures/TestDatabase_Type.yaml +++ b/test/integration/fixtures/TestDatabase_Type.yaml @@ -11,7 +11,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/types + 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": @@ -20,98 +20,71 @@ interactions: 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}}], "mongodb": [{"quantity": 1, "price": {"hourly": - 0.0225, "monthly": 15.0}}, {"quantity": 2, "price": {"hourly": 0.045, "monthly": - 30.0}}, {"quantity": 3, "price": {"hourly": 0.0675, "monthly": 45.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}}], "mongodb": [{"quantity": 1, "price": - {"hourly": 0.045, "monthly": 30.0}}, {"quantity": 2, "price": {"hourly": 0.09, - "monthly": 60.0}}, {"quantity": 3, "price": {"hourly": 0.135, "monthly": 90.0}}]}, - "memory": 2048, "disk": 51200, "vcpus": 1, "class": "standard"}, {"id": "g6-standard-2", + 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}}], "mongodb": [{"quantity": 1, "price": - {"hourly": 0.09, "monthly": 60.0}}, {"quantity": 2, "price": {"hourly": 0.18, - "monthly": 120.0}}, {"quantity": 3, "price": {"hourly": 0.27, "monthly": 180.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}}], "mongodb": [{"quantity": 1, "price": - {"hourly": 0.18, "monthly": 120.0}}, {"quantity": 2, "price": {"hourly": 0.36, - "monthly": 240.0}}, {"quantity": 3, "price": {"hourly": 0.54, "monthly": 360.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}}], "mongodb": [{"quantity": 1, "price": - {"hourly": 0.36, "monthly": 240.0}}, {"quantity": 2, "price": {"hourly": 0.72, - "monthly": 480.0}}, {"quantity": 3, "price": {"hourly": 1.08, "monthly": 720.0}}]}, - "memory": 16384, "disk": 327680, "vcpus": 6, "class": "standard"}, {"id": "g6-standard-8", + "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}}], "mongodb": [{"quantity": 1, - "price": {"hourly": 0.72, "monthly": 480.0}}, {"quantity": 2, "price": {"hourly": - 1.44, "monthly": 960.0}}, {"quantity": 3, "price": {"hourly": 2.16, "monthly": - 1440.0}}]}, "memory": 32768, "disk": 655360, "vcpus": 8, "class": "standard"}, - {"id": "g6-standard-16", "label": "DBaaS - Linode 64GB", "engines": {"mysql": + "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}}], "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}}], "mongodb": - [{"quantity": 1, "price": {"hourly": 1.44, "monthly": 960.0}}, {"quantity": - 2, "price": {"hourly": 2.88, "monthly": 1920.0}}, {"quantity": 3, "price": {"hourly": - 4.32, "monthly": 2880.0}}]}, "memory": 65536, "disk": 1310720, "vcpus": 16, + 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}}], "mongodb": [{"quantity": 1, "price": {"hourly": 2.16, "monthly": - 1440.0}}, {"quantity": 2, "price": {"hourly": 4.32, "monthly": 2880.0}}, {"quantity": - 3, "price": {"hourly": 6.48, "monthly": 4320.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": + 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}}], "mongodb": [{"quantity": 1, "price": {"hourly": - 2.88, "monthly": 1920.0}}, {"quantity": 2, "price": {"hourly": 5.76, "monthly": - 3840.0}}, {"quantity": 3, "price": {"hourly": 8.64, "monthly": 5760.0}}]}, "memory": + 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}}], "mongodb": [{"quantity": 1, - "price": {"hourly": 4.32, "monthly": 2880.0}}, {"quantity": 2, "price": {"hourly": - 8.64, "monthly": 5760.0}}, {"quantity": 3, "price": {"hourly": 12.96, "monthly": - 8640.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": + "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}}], "mongodb": + 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": @@ -120,62 +93,45 @@ interactions: 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}}], "mongodb": - [{"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}}], "mongodb": - [{"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": 6, "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": + 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}}], "mongodb": + 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": 8, "class": + 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}}], "mongodb": - [{"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": 16, - "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}}], "mongodb": [{"quantity": 1, "price": {"hourly": 2.34, "monthly": - 1560.0}}, {"quantity": 2, "price": {"hourly": 4.68, "monthly": 3120.0}}, {"quantity": + 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": 20, "class": "dedicated"}, {"id": "g6-dedicated-50", "label": + 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}}], "mongodb": [{"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}}], "mongodb": [{"quantity": + 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"}, @@ -185,10 +141,7 @@ interactions: {"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}}], "mongodb": [{"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"}]}' + 24960.0}}]}, "memory": 524288, "disk": 7372800, "vcpus": 64, "class": "dedicated"}]}' headers: Access-Control-Allow-Credentials: - "true" @@ -201,19 +154,23 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + 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: @@ -224,7 +181,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -248,11 +205,8 @@ interactions: 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}}], "mongodb": - [{"quantity": 1, "price": {"hourly": 0.0225, "monthly": 15.0}}, {"quantity": - 2, "price": {"hourly": 0.045, "monthly": 30.0}}, {"quantity": 3, "price": {"hourly": - 0.0675, "monthly": 45.0}}]}, "memory": 1024, "disk": 25600, "vcpus": 1, "class": - "nanode"}' + 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" @@ -265,16 +219,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "733" + - "532" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 24 Jun 2024 16:45:41 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -290,7 +247,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK diff --git a/test/integration/fixtures/TestDomainRecord_Create.yaml b/test/integration/fixtures/TestDomainRecord_Create.yaml index b93330551..1d62539e2 100644 --- a/test/integration/fixtures/TestDomainRecord_Create.yaml +++ b/test/integration/fixtures/TestDomainRecord_Create.yaml @@ -14,7 +14,7 @@ interactions: url: https://api.linode.com/v4beta/domains method: POST response: - body: '{"id": 1899359, "type": "master", "domain": "linodego-blue-test.com", "tags": + body: '{"id": 470363, "type": "master", "domain": "linodego-blue-test.com", "tags": [], "group": "", "status": "active", "errors": "", "description": "", "soa_email": "example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec": 0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated": @@ -32,8 +32,6 @@ interactions: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - private, max-age=60, s-maxage=60 - Content-Length: - - "350" Content-Security-Policy: - default-src 'none' Content-Type: @@ -43,6 +41,7 @@ interactions: Strict-Transport-Security: - max-age=31536000 Vary: + - Accept-Encoding - Authorization, X-Filter X-Accepted-Oauth-Scopes: - domains:read_write @@ -54,7 +53,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -70,10 +69,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899359/records + url: https://api.linode.com/v4beta/domains/470363/records method: POST response: - body: '{"id": 22122783, "type": "A", "name": "a", "target": "127.0.0.1", "priority": + body: '{"id": 42397, "type": "A", "name": "a", "target": "127.0.0.1", "priority": 0, "weight": 0, "port": 0, "service": null, "protocol": null, "ttl_sec": 0, "tag": null, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' headers: @@ -90,7 +89,7 @@ interactions: Cache-Control: - private, max-age=60, s-maxage=60 Content-Length: - - "234" + - "231" Content-Security-Policy: - default-src 'none' Content-Type: @@ -111,7 +110,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -127,7 +126,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899359/records/22122783 + url: https://api.linode.com/v4beta/domains/470363/records/42397 method: DELETE response: body: '{}' @@ -166,7 +165,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -182,7 +181,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899359 + url: https://api.linode.com/v4beta/domains/470363 method: DELETE response: body: '{}' @@ -221,7 +220,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK diff --git a/test/integration/fixtures/TestDomainRecord_Get.yaml b/test/integration/fixtures/TestDomainRecord_Get.yaml index ad8f14d6e..8f9579680 100644 --- a/test/integration/fixtures/TestDomainRecord_Get.yaml +++ b/test/integration/fixtures/TestDomainRecord_Get.yaml @@ -14,7 +14,7 @@ interactions: url: https://api.linode.com/v4beta/domains method: POST response: - body: '{"id": 1899363, "type": "master", "domain": "linodego-blue-test.com", "tags": + body: '{"id": 470367, "type": "master", "domain": "linodego-blue-test.com", "tags": [], "group": "", "status": "active", "errors": "", "description": "", "soa_email": "example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec": 0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated": @@ -32,8 +32,6 @@ interactions: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - private, max-age=60, s-maxage=60 - Content-Length: - - "350" Content-Security-Policy: - default-src 'none' Content-Type: @@ -43,6 +41,7 @@ interactions: Strict-Transport-Security: - max-age=31536000 Vary: + - Accept-Encoding - Authorization, X-Filter X-Accepted-Oauth-Scopes: - domains:read_write @@ -54,7 +53,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -70,10 +69,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899363/records + url: https://api.linode.com/v4beta/domains/470367/records method: POST response: - body: '{"id": 22122788, "type": "A", "name": "a", "target": "127.0.0.1", "priority": + body: '{"id": 42401, "type": "A", "name": "a", "target": "127.0.0.1", "priority": 0, "weight": 0, "port": 0, "service": null, "protocol": null, "ttl_sec": 0, "tag": null, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' headers: @@ -90,7 +89,7 @@ interactions: Cache-Control: - private, max-age=60, s-maxage=60 Content-Length: - - "234" + - "231" Content-Security-Policy: - default-src 'none' Content-Type: @@ -111,7 +110,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -127,10 +126,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899363/records/22122788 + url: https://api.linode.com/v4beta/domains/470367/records/42401 method: GET response: - body: '{"id": 22122788, "type": "A", "name": "a", "target": "127.0.0.1", "priority": + body: '{"id": 42401, "type": "A", "name": "a", "target": "127.0.0.1", "priority": 0, "weight": 0, "port": 0, "service": null, "protocol": null, "ttl_sec": 0, "tag": null, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' headers: @@ -148,7 +147,7 @@ interactions: - private, max-age=0, s-maxage=0, no-cache, no-store - private, max-age=60, s-maxage=60 Content-Length: - - "234" + - "231" Content-Security-Policy: - default-src 'none' Content-Type: @@ -170,7 +169,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -186,7 +185,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899363/records/22122788 + url: https://api.linode.com/v4beta/domains/470367/records/42401 method: DELETE response: body: '{}' @@ -225,7 +224,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -241,7 +240,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899363 + url: https://api.linode.com/v4beta/domains/470367 method: DELETE response: body: '{}' @@ -280,7 +279,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK diff --git a/test/integration/fixtures/TestDomainRecord_Update.yaml b/test/integration/fixtures/TestDomainRecord_Update.yaml index b501f31c2..06cf8c31b 100644 --- a/test/integration/fixtures/TestDomainRecord_Update.yaml +++ b/test/integration/fixtures/TestDomainRecord_Update.yaml @@ -14,7 +14,7 @@ interactions: url: https://api.linode.com/v4beta/domains method: POST response: - body: '{"id": 1899360, "type": "master", "domain": "linodego-blue-test.com", "tags": + body: '{"id": 470364, "type": "master", "domain": "linodego-blue-test.com", "tags": [], "group": "", "status": "active", "errors": "", "description": "", "soa_email": "example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec": 0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated": @@ -32,8 +32,6 @@ interactions: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - private, max-age=60, s-maxage=60 - Content-Length: - - "350" Content-Security-Policy: - default-src 'none' Content-Type: @@ -43,6 +41,7 @@ interactions: Strict-Transport-Security: - max-age=31536000 Vary: + - Accept-Encoding - Authorization, X-Filter X-Accepted-Oauth-Scopes: - domains:read_write @@ -54,7 +53,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -70,10 +69,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899360/records + url: https://api.linode.com/v4beta/domains/470364/records method: POST response: - body: '{"id": 22122785, "type": "A", "name": "a", "target": "127.0.0.1", "priority": + body: '{"id": 42398, "type": "A", "name": "a", "target": "127.0.0.1", "priority": 0, "weight": 0, "port": 0, "service": null, "protocol": null, "ttl_sec": 0, "tag": null, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' headers: @@ -90,7 +89,7 @@ interactions: Cache-Control: - private, max-age=60, s-maxage=60 Content-Length: - - "234" + - "231" Content-Security-Policy: - default-src 'none' Content-Type: @@ -111,7 +110,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -127,12 +126,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899360/records/22122785 + url: https://api.linode.com/v4beta/domains/470364/records/42398 method: PUT response: - body: '{"id": 22122785, "type": "A", "name": "renamed", "target": "127.0.0.1", - "priority": 0, "weight": 0, "port": 0, "service": null, "protocol": null, "ttl_sec": - 0, "tag": null, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' + body: '{"id": 42398, "type": "A", "name": "renamed", "target": "127.0.0.1", "priority": + 0, "weight": 0, "port": 0, "service": null, "protocol": null, "ttl_sec": 0, + "tag": null, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' headers: Access-Control-Allow-Credentials: - "true" @@ -147,7 +146,7 @@ interactions: Cache-Control: - private, max-age=60, s-maxage=60 Content-Length: - - "240" + - "237" Content-Security-Policy: - default-src 'none' Content-Type: @@ -168,7 +167,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -184,7 +183,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899360/records/22122785 + url: https://api.linode.com/v4beta/domains/470364/records/42398 method: DELETE response: body: '{}' @@ -223,7 +222,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -239,7 +238,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899360 + url: https://api.linode.com/v4beta/domains/470364 method: DELETE response: body: '{}' @@ -278,7 +277,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK diff --git a/test/integration/fixtures/TestDomainRecords_List.yaml b/test/integration/fixtures/TestDomainRecords_List.yaml index 9752e9a5e..9e9218394 100644 --- a/test/integration/fixtures/TestDomainRecords_List.yaml +++ b/test/integration/fixtures/TestDomainRecords_List.yaml @@ -14,7 +14,7 @@ interactions: url: https://api.linode.com/v4beta/domains method: POST response: - body: '{"id": 1899361, "type": "master", "domain": "linodego-blue-test.com", "tags": + body: '{"id": 470365, "type": "master", "domain": "linodego-blue-test.com", "tags": [], "group": "", "status": "active", "errors": "", "description": "", "soa_email": "example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec": 0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated": @@ -32,8 +32,6 @@ interactions: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - private, max-age=60, s-maxage=60 - Content-Length: - - "350" Content-Security-Policy: - default-src 'none' Content-Type: @@ -43,6 +41,7 @@ interactions: Strict-Transport-Security: - max-age=31536000 Vary: + - Accept-Encoding - Authorization, X-Filter X-Accepted-Oauth-Scopes: - domains:read_write @@ -54,7 +53,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -70,10 +69,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899361/records + url: https://api.linode.com/v4beta/domains/470365/records method: POST response: - body: '{"id": 22122786, "type": "A", "name": "a", "target": "127.0.0.1", "priority": + body: '{"id": 42399, "type": "A", "name": "a", "target": "127.0.0.1", "priority": 0, "weight": 0, "port": 0, "service": null, "protocol": null, "ttl_sec": 0, "tag": null, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' headers: @@ -90,7 +89,7 @@ interactions: Cache-Control: - private, max-age=60, s-maxage=60 Content-Length: - - "234" + - "231" Content-Security-Policy: - default-src 'none' Content-Type: @@ -111,7 +110,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -129,10 +128,10 @@ interactions: - linodego/dev https://github.com/linode/linodego X-Filter: - '{"name":"a"}' - url: https://api.linode.com/v4beta/domains/1899361/records + url: https://api.linode.com/v4beta/domains/470365/records?page=1 method: GET response: - body: '{"data": [{"id": 22122786, "type": "A", "name": "a", "target": "127.0.0.1", + body: '{"data": [{"id": 42399, "type": "A", "name": "a", "target": "127.0.0.1", "priority": 0, "weight": 0, "port": 0, "service": null, "protocol": null, "ttl_sec": 0, "tag": null, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}], "page": 1, "pages": 1, "results": 1}' @@ -150,8 +149,6 @@ interactions: Cache-Control: - private, max-age=0, s-maxage=0, no-cache, no-store - private, max-age=60, s-maxage=60 - Content-Length: - - "283" Content-Security-Policy: - default-src 'none' Content-Type: @@ -161,6 +158,7 @@ interactions: Strict-Transport-Security: - max-age=31536000 Vary: + - Accept-Encoding - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: @@ -173,7 +171,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -189,7 +187,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899361/records/22122786 + url: https://api.linode.com/v4beta/domains/470365/records/42399 method: DELETE response: body: '{}' @@ -228,7 +226,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -244,7 +242,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899361 + url: https://api.linode.com/v4beta/domains/470365 method: DELETE response: body: '{}' @@ -283,7 +281,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK diff --git a/test/integration/fixtures/TestDomainRecords_ListMultiplePages.yaml b/test/integration/fixtures/TestDomainRecords_ListMultiplePages.yaml index bde155580..3a78a3d93 100644 --- a/test/integration/fixtures/TestDomainRecords_ListMultiplePages.yaml +++ b/test/integration/fixtures/TestDomainRecords_ListMultiplePages.yaml @@ -14,7 +14,7 @@ interactions: url: https://api.linode.com/v4beta/domains method: POST response: - body: '{"id": 1899362, "type": "master", "domain": "linodego-blue-test.com", "tags": + body: '{"id": 470366, "type": "master", "domain": "linodego-blue-test.com", "tags": [], "group": "", "status": "active", "errors": "", "description": "", "soa_email": "example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec": 0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated": @@ -32,8 +32,6 @@ interactions: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - private, max-age=60, s-maxage=60 - Content-Length: - - "350" Content-Security-Policy: - default-src 'none' Content-Type: @@ -43,6 +41,7 @@ interactions: Strict-Transport-Security: - max-age=31536000 Vary: + - Accept-Encoding - Authorization, X-Filter X-Accepted-Oauth-Scopes: - domains:read_write @@ -54,7 +53,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -70,10 +69,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899362/records + url: https://api.linode.com/v4beta/domains/470366/records method: POST response: - body: '{"id": 22122787, "type": "A", "name": "a", "target": "127.0.0.1", "priority": + body: '{"id": 42400, "type": "A", "name": "a", "target": "127.0.0.1", "priority": 0, "weight": 0, "port": 0, "service": null, "protocol": null, "ttl_sec": 0, "tag": null, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' headers: @@ -90,7 +89,7 @@ interactions: Cache-Control: - private, max-age=60, s-maxage=60 Content-Length: - - "234" + - "231" Content-Security-Policy: - default-src 'none' Content-Type: @@ -111,7 +110,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -129,10 +128,10 @@ interactions: - linodego/dev https://github.com/linode/linodego X-Filter: - '{"name":"a"}' - url: https://api.linode.com/v4beta/domains/1899362/records + url: https://api.linode.com/v4beta/domains/470366/records?page=1 method: GET response: - body: '{"data": [{"id": 22122787, "type": "A", "name": "a", "target": "127.0.0.1", + body: '{"data": [{"id": 42400, "type": "A", "name": "a", "target": "127.0.0.1", "priority": 0, "weight": 0, "port": 0, "service": null, "protocol": null, "ttl_sec": 0, "tag": null, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}], "page": 1, "pages": 1, "results": 1}' @@ -150,8 +149,6 @@ interactions: Cache-Control: - private, max-age=0, s-maxage=0, no-cache, no-store - private, max-age=60, s-maxage=60 - Content-Length: - - "283" Content-Security-Policy: - default-src 'none' Content-Type: @@ -161,6 +158,7 @@ interactions: Strict-Transport-Security: - max-age=31536000 Vary: + - Accept-Encoding - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: @@ -173,7 +171,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -189,7 +187,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899362/records/22122787 + url: https://api.linode.com/v4beta/domains/470366/records/42400 method: DELETE response: body: '{}' @@ -228,7 +226,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -244,7 +242,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899362 + url: https://api.linode.com/v4beta/domains/470366 method: DELETE response: body: '{}' @@ -283,7 +281,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK diff --git a/test/integration/fixtures/TestDomain_Create.yaml b/test/integration/fixtures/TestDomain_Create.yaml index 577996b56..847fb78dc 100644 --- a/test/integration/fixtures/TestDomain_Create.yaml +++ b/test/integration/fixtures/TestDomain_Create.yaml @@ -14,7 +14,7 @@ interactions: url: https://api.linode.com/v4beta/domains method: POST response: - body: '{"id": 1899364, "type": "master", "domain": "linodego-blue-test.com", "tags": + body: '{"id": 470368, "type": "master", "domain": "linodego-blue-test.com", "tags": [], "group": "", "status": "active", "errors": "", "description": "", "soa_email": "example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec": 0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated": @@ -32,8 +32,6 @@ interactions: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - private, max-age=60, s-maxage=60 - Content-Length: - - "350" Content-Security-Policy: - default-src 'none' Content-Type: @@ -43,6 +41,7 @@ interactions: Strict-Transport-Security: - max-age=31536000 Vary: + - Accept-Encoding - Authorization, X-Filter X-Accepted-Oauth-Scopes: - domains:read_write @@ -54,7 +53,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -70,7 +69,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899364 + url: https://api.linode.com/v4beta/domains/470368 method: DELETE response: body: '{}' @@ -109,7 +108,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK diff --git a/test/integration/fixtures/TestDomain_Get.yaml b/test/integration/fixtures/TestDomain_Get.yaml index 507d5436e..707812550 100644 --- a/test/integration/fixtures/TestDomain_Get.yaml +++ b/test/integration/fixtures/TestDomain_Get.yaml @@ -14,7 +14,7 @@ interactions: url: https://api.linode.com/v4beta/domains method: POST response: - body: '{"id": 1899367, "type": "master", "domain": "linodego-blue-test.com", "tags": + body: '{"id": 470371, "type": "master", "domain": "linodego-blue-test.com", "tags": [], "group": "", "status": "active", "errors": "", "description": "", "soa_email": "example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec": 0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated": @@ -32,8 +32,6 @@ interactions: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - private, max-age=60, s-maxage=60 - Content-Length: - - "350" Content-Security-Policy: - default-src 'none' Content-Type: @@ -43,6 +41,7 @@ interactions: Strict-Transport-Security: - max-age=31536000 Vary: + - Accept-Encoding - Authorization, X-Filter X-Accepted-Oauth-Scopes: - domains:read_write @@ -54,7 +53,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -70,10 +69,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899367 + url: https://api.linode.com/v4beta/domains/470371 method: GET response: - body: '{"id": 1899367, "type": "master", "domain": "linodego-blue-test.com", "tags": + body: '{"id": 470371, "type": "master", "domain": "linodego-blue-test.com", "tags": [], "group": "", "status": "active", "errors": "", "description": "", "soa_email": "example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec": 0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated": @@ -92,8 +91,6 @@ interactions: Cache-Control: - private, max-age=0, s-maxage=0, no-cache, no-store - private, max-age=60, s-maxage=60 - Content-Length: - - "350" Content-Security-Policy: - default-src 'none' Content-Type: @@ -103,6 +100,7 @@ interactions: Strict-Transport-Security: - max-age=31536000 Vary: + - Accept-Encoding - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: @@ -115,7 +113,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -131,7 +129,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899367 + url: https://api.linode.com/v4beta/domains/470371 method: DELETE response: body: '{}' @@ -170,7 +168,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK diff --git a/test/integration/fixtures/TestDomain_Update.yaml b/test/integration/fixtures/TestDomain_Update.yaml index 21632174d..27b7e43da 100644 --- a/test/integration/fixtures/TestDomain_Update.yaml +++ b/test/integration/fixtures/TestDomain_Update.yaml @@ -14,7 +14,7 @@ interactions: url: https://api.linode.com/v4beta/domains method: POST response: - body: '{"id": 1899365, "type": "master", "domain": "linodego-blue-test.com", "tags": + body: '{"id": 470369, "type": "master", "domain": "linodego-blue-test.com", "tags": [], "group": "", "status": "active", "errors": "", "description": "", "soa_email": "example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec": 0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated": @@ -32,8 +32,6 @@ interactions: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - private, max-age=60, s-maxage=60 - Content-Length: - - "350" Content-Security-Policy: - default-src 'none' Content-Type: @@ -43,6 +41,7 @@ interactions: Strict-Transport-Security: - max-age=31536000 Vary: + - Accept-Encoding - Authorization, X-Filter X-Accepted-Oauth-Scopes: - domains:read_write @@ -54,7 +53,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -70,10 +69,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899365 + url: https://api.linode.com/v4beta/domains/470369 method: PUT response: - body: '{"id": 1899365, "type": "master", "domain": "linodego-renamed-domain.com", + body: '{"id": 470369, "type": "master", "domain": "linodego-renamed-domain.com", "tags": [], "group": "", "status": "active", "errors": "", "description": "", "soa_email": "example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec": 0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", @@ -91,8 +90,6 @@ interactions: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - private, max-age=60, s-maxage=60 - Content-Length: - - "355" Content-Security-Policy: - default-src 'none' Content-Type: @@ -102,6 +99,7 @@ interactions: Strict-Transport-Security: - max-age=31536000 Vary: + - Accept-Encoding - Authorization, X-Filter X-Accepted-Oauth-Scopes: - domains:read_write @@ -113,7 +111,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -129,7 +127,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899365 + url: https://api.linode.com/v4beta/domains/470369 method: DELETE response: body: '{}' @@ -168,7 +166,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK diff --git a/test/integration/fixtures/TestDomain_ZoneFile_Get.yaml b/test/integration/fixtures/TestDomain_ZoneFile_Get.yaml index e722f29a4..4658cf7f3 100644 --- a/test/integration/fixtures/TestDomain_ZoneFile_Get.yaml +++ b/test/integration/fixtures/TestDomain_ZoneFile_Get.yaml @@ -14,7 +14,7 @@ interactions: url: https://api.linode.com/v4beta/domains method: POST response: - body: '{"id": 1899368, "type": "master", "domain": "linodego-blue-test.com", "tags": + body: '{"id": 470372, "type": "master", "domain": "linodego-blue-test.com", "tags": [], "group": "", "status": "active", "errors": "", "description": "", "soa_email": "example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec": 0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated": @@ -32,8 +32,6 @@ interactions: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - private, max-age=60, s-maxage=60 - Content-Length: - - "350" Content-Security-Policy: - default-src 'none' Content-Type: @@ -43,6 +41,7 @@ interactions: Strict-Transport-Security: - max-age=31536000 Vary: + - Accept-Encoding - Authorization, X-Filter X-Accepted-Oauth-Scopes: - domains:read_write @@ -54,7 +53,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -70,7 +69,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899368/zone-file + url: https://api.linode.com/v4beta/domains/470372/zone-file method: GET response: body: '{"zone_file": []}' @@ -111,7 +110,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -127,7 +126,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899368 + url: https://api.linode.com/v4beta/domains/470372 method: DELETE response: body: '{}' @@ -166,7 +165,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK diff --git a/test/integration/fixtures/TestDomains_List.yaml b/test/integration/fixtures/TestDomains_List.yaml index 59976427d..9d9bd4c7d 100644 --- a/test/integration/fixtures/TestDomains_List.yaml +++ b/test/integration/fixtures/TestDomains_List.yaml @@ -14,7 +14,7 @@ interactions: url: https://api.linode.com/v4beta/domains method: POST response: - body: '{"id": 1899366, "type": "master", "domain": "linodego-blue-test.com", "tags": + body: '{"id": 470370, "type": "master", "domain": "linodego-blue-test.com", "tags": [], "group": "", "status": "active", "errors": "", "description": "", "soa_email": "example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec": 0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated": @@ -32,8 +32,6 @@ interactions: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - private, max-age=60, s-maxage=60 - Content-Length: - - "350" Content-Security-Policy: - default-src 'none' Content-Type: @@ -43,6 +41,7 @@ interactions: Strict-Transport-Security: - max-age=31536000 Vary: + - Accept-Encoding - Authorization, X-Filter X-Accepted-Oauth-Scopes: - domains:read_write @@ -54,7 +53,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -70,10 +69,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains + url: https://api.linode.com/v4beta/domains?page=1 method: GET response: - body: '{"data": [{"id": 1899366, "type": "master", "domain": "linodego-blue-test.com", + body: '{"data": [{"id": 470370, "type": "master", "domain": "linodego-blue-test.com", "tags": [], "group": "", "status": "active", "errors": "", "description": "", "soa_email": "example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec": 0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", @@ -92,8 +91,6 @@ interactions: Cache-Control: - private, max-age=0, s-maxage=0, no-cache, no-store - private, max-age=60, s-maxage=60 - Content-Length: - - "399" Content-Security-Policy: - default-src 'none' Content-Type: @@ -103,6 +100,7 @@ interactions: Strict-Transport-Security: - max-age=31536000 Vary: + - Accept-Encoding - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: @@ -115,7 +113,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -131,7 +129,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/domains/1899366 + url: https://api.linode.com/v4beta/domains/470370 method: DELETE response: body: '{}' @@ -170,7 +168,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK diff --git a/test/integration/fixtures/TestFirewallDevice_Delete.yaml b/test/integration/fixtures/TestFirewallDevice_Delete.yaml index 626551434..db5cf4716 100644 --- a/test/integration/fixtures/TestFirewallDevice_Delete.yaml +++ b/test/integration/fixtures/TestFirewallDevice_Delete.yaml @@ -19,211 +19,230 @@ interactions: "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": "2400:8904::f03c:91ff:fea5:659, 2400:8904::f03c:91ff:fea5:9282, - 2400:8904::f03c:91ff:fea5:b9b3, 2400:8904::f03c:91ff:fea5:925a, 2400:8904::f03c:91ff:fea5:22cb, - 2400:8904::f03c:91ff:fea5:227a, 2400:8904::f03c:91ff:fea5:924c, 2400:8904::f03c:91ff:fea5:f7e2, - 2400:8904::f03c:91ff:fea5:2205, 2400:8904::f03c:91ff:fea5:9207"}, "placement_group_limits": + 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": "2600:3c04::f03c:91ff:fea9:f63, 2600:3c04::f03c:91ff:fea9:f6d, - 2600:3c04::f03c:91ff:fea9:f80, 2600:3c04::f03c:91ff:fea9:f0f, 2600:3c04::f03c:91ff:fea9:f99, - 2600:3c04::f03c:91ff:fea9:fbd, 2600:3c04::f03c:91ff:fea9:fdd, 2600:3c04::f03c:91ff:fea9:fe2, - 2600:3c04::f03c:91ff:fea9:f68, 2600:3c04::f03c:91ff:fea9:f4a"}, "placement_group_limits": + 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": "2400:8907::f03c:92ff:fe6e:ec8, 2400:8907::f03c:92ff:fe6e:98e4, - 2400:8907::f03c:92ff:fe6e:1c58, 2400:8907::f03c:92ff:fe6e:c299, 2400:8907::f03c:92ff:fe6e:c210, - 2400:8907::f03c:92ff:fe6e:c219, 2400:8907::f03c:92ff:fe6e:1c5c, 2400:8907::f03c:92ff:fe6e:c24e, - 2400:8907::f03c:92ff:fe6e:e6b, 2400:8907::f03c:92ff:fe6e:e3d"}, "placement_group_limits": + 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": "2600:3c05::f03c:93ff:feb6:43b6, - 2600:3c05::f03c:93ff:feb6:4365, 2600:3c05::f03c:93ff:feb6:43c2, 2600:3c05::f03c:93ff:feb6:e441, - 2600:3c05::f03c:93ff:feb6:94ef, 2600:3c05::f03c:93ff:feb6:94ba, 2600:3c05::f03c:93ff:feb6:94a8, - 2600:3c05::f03c:93ff:feb6:9413, 2600:3c05::f03c:93ff:feb6:9443, 2600:3c05::f03c:93ff:feb6:94e0"}, + 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": 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"], "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": - "2600:3c06::f03c:93ff:fed0:e5fc, 2600:3c06::f03c:93ff:fed0:e54b, 2600:3c06::f03c:93ff:fed0:e572, - 2600:3c06::f03c:93ff:fed0:e530, 2600:3c06::f03c:93ff:fed0:e597, 2600:3c06::f03c:93ff:fed0:e511, - 2600:3c06::f03c:93ff:fed0:e5f2, 2600:3c06::f03c:93ff:fed0:e5bf, 2600:3c06::f03c:93ff:fed0:e529, - 2600:3c06::f03c:93ff:fed0:e5a3"}, "placement_group_limits": {"maximum_pgs_per_customer": + "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": "2600:3c07::f03c:93ff:fef2:2e63, 2600:3c07::f03c:93ff:fef2:2ec7, 2600:3c07::f03c:93ff:fef2:0dee, - 2600:3c07::f03c:93ff:fef2:0d25, 2600:3c07::f03c:93ff:fef2:0de0, 2600:3c07::f03c:93ff:fef2:2e29, - 2600:3c07::f03c:93ff:fef2:0dda, 2600:3c07::f03c:93ff:fef2:0d82, 2600:3c07::f03c:93ff:fef2:b3ac, - 2600:3c07::f03c:93ff:fef2:b3a8"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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": "2600:3c0a::f03c:93ff:fe54:c6da, 2600:3c0a::f03c:93ff:fe54:c691, 2600:3c0a::f03c:93ff:fe54:c68d, - 2600:3c0a::f03c:93ff:fe54:c61e, 2600:3c0a::f03c:93ff:fe54:c653, 2600:3c0a::f03c:93ff:fe54:c64c, - 2600:3c0a::f03c:93ff:fe54:c68a, 2600:3c0a::f03c:93ff:fe54:c697, 2600:3c0a::f03c:93ff:fe54:c60f, - 2600:3c0a::f03c:93ff:fe54:c6a0"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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": "2600:3c0d::f03c:93ff:fe3d:51cb, - 2600:3c0d::f03c:93ff:fe3d:51a7, 2600:3c0d::f03c:93ff:fe3d:51a9, 2600:3c0d::f03c:93ff:fe3d:5119, - 2600:3c0d::f03c:93ff:fe3d:51fe, 2600:3c0d::f03c:93ff:fe3d:517c, 2600:3c0d::f03c:93ff:fe3d:5144, - 2600:3c0d::f03c:93ff:fe3d:5170, 2600:3c0d::f03c:93ff:fe3d:51cc, 2600:3c0d::f03c:93ff:fe3d:516c"}, + 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": 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": "2600:3c0e::f03c:93ff:fe9d:2d10, 2600:3c0e::f03c:93ff:fe9d:2d89, - 2600:3c0e::f03c:93ff:fe9d:2d79, 2600:3c0e::f03c:93ff:fe9d:2d96, 2600:3c0e::f03c:93ff:fe9d:2da5, - 2600:3c0e::f03c:93ff:fe9d:2d34, 2600:3c0e::f03c:93ff:fe9d:2d68, 2600:3c0e::f03c:93ff:fe9d:2d17, - 2600:3c0e::f03c:93ff:fe9d:2d45, 2600:3c0e::f03c:93ff:fe9d:2d5c"}, "placement_group_limits": + 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": "2600:3c09::f03c:93ff:fea9:4dbe, 2600:3c09::f03c:93ff:fea9:4d63, - 2600:3c09::f03c:93ff:fea9:4dce, 2600:3c09::f03c:93ff:fea9:4dbb, 2600:3c09::f03c:93ff:fea9:4d99, - 2600:3c09::f03c:93ff:fea9:4d26, 2600:3c09::f03c:93ff:fea9:4de0, 2600:3c09::f03c:93ff:fea9:4d69, - 2600:3c09::f03c:93ff:fea9:4dbf, 2600:3c09::f03c:93ff:fea9:4da6"}, "placement_group_limits": + 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": "2a01:7e02::f03c:93ff:feea:b585, 2a01:7e02::f03c:93ff:feea:b5ab, - 2a01:7e02::f03c:93ff:feea:b5c6, 2a01:7e02::f03c:93ff:feea:b592, 2a01:7e02::f03c:93ff:feea:b5aa, - 2a01:7e02::f03c:93ff:feea:b5d3, 2a01:7e02::f03c:93ff:feea:b5d7, 2a01:7e02::f03c:93ff:feea:b528, - 2a01:7e02::f03c:93ff:feea:b522, 2a01:7e02::f03c:93ff:feea:b51a"}, "placement_group_limits": + 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": "2600:3c08::f03c:93ff:fe7c:1135, 2600:3c08::f03c:93ff:fe7c:11f8, 2600:3c08::f03c:93ff:fe7c:11d2, - 2600:3c08::f03c:93ff:fe7c:11a7, 2600:3c08::f03c:93ff:fe7c:11ad, 2600:3c08::f03c:93ff:fe7c:110a, - 2600:3c08::f03c:93ff:fe7c:11f9, 2600:3c08::f03c:93ff:fe7c:1137, 2600:3c08::f03c:93ff:fe7c:11db, - 2600:3c08::f03c:93ff:fe7c:1164"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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": "2400:8905::f03c:93ff:fe9d:b085, 2400:8905::f03c:93ff:fe9d:b012, 2400:8905::f03c:93ff:fe9d:b09b, - 2400:8905::f03c:93ff:fe9d:b0d8, 2400:8905::f03c:93ff:fe9d:259f, 2400:8905::f03c:93ff:fe9d:b006, - 2400:8905::f03c:93ff:fe9d:b084, 2400:8905::f03c:93ff:fe9d:b0ce, 2400:8905::f03c:93ff:fe9d:25ea, - 2400:8905::f03c:93ff:fe9d:b086"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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": "2600:3c0b::f03c:93ff:feba:d513, 2600:3c0b::f03c:93ff:feba:d5c3, 2600:3c0b::f03c:93ff:feba:d597, - 2600:3c0b::f03c:93ff:feba:d5fb, 2600:3c0b::f03c:93ff:feba:d51f, 2600:3c0b::f03c:93ff:feba:d58e, - 2600:3c0b::f03c:93ff:feba:d5d5, 2600:3c0b::f03c:93ff:feba:d534, 2600:3c0b::f03c:93ff:feba:d57c, - 2600:3c0b::f03c:93ff:feba:d529"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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"], "status": "ok", "resolvers": {"ipv4": - "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32, + "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": "2a01:7e04::f03c:93ff:fead:d31f, 2a01:7e04::f03c:93ff:fead:d37f, 2a01:7e04::f03c:93ff:fead:d30c, - 2a01:7e04::f03c:93ff:fead:d318, 2a01:7e04::f03c:93ff:fead:d316, 2a01:7e04::f03c:93ff:fead:d339, - 2a01:7e04::f03c:93ff:fead:d367, 2a01:7e04::f03c:93ff:fead:d395, 2a01:7e04::f03c:93ff:fead:d3d0, - 2a01:7e04::f03c:93ff:fead:d38e"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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": "2600:3c0c::f03c:93ff:feed:a90b, 2600:3c0c::f03c:93ff:feed:a9a5, 2600:3c0c::f03c:93ff:feed:a935, - 2600:3c0c::f03c:93ff:feed:a930, 2600:3c0c::f03c:93ff:feed:a95c, 2600:3c0c::f03c:93ff:feed:a9ad, - 2600:3c0c::f03c:93ff:feed:a9f2, 2600:3c0c::f03c:93ff:feed:a9ff, 2600:3c0c::f03c:93ff:feed:a9c8, - 2600:3c0c::f03c:93ff:feed:a96b"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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": "2a01:7e03::f03c:93ff:feb1:b789, 2a01:7e03::f03c:93ff:feb1:b717, 2a01:7e03::f03c:93ff:feb1:b707, - 2a01:7e03::f03c:93ff:feb1:b7ab, 2a01:7e03::f03c:93ff:feb1:b7e2, 2a01:7e03::f03c:93ff:feb1:b709, - 2a01:7e03::f03c:93ff:feb1:b7a6, 2a01:7e03::f03c:93ff:feb1:b750, 2a01:7e03::f03c:93ff:feb1:b76e, - 2a01:7e03::f03c:93ff:feb1:b7a2"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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", "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": - "2600:3c00::2, 2600:3c00::9, 2600:3c00::7, 2600:3c00::5, 2600:3c00::3, 2600:3c00::8, - 2600:3c00::6, 2600:3c00::4, 2600:3c00::c, 2600:3c00::b"}, "placement_group_limits": + "1234::5678, 1234::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": "2600:3c01::2, 2600:3c01::9, 2600:3c01::5, 2600:3c01::7, - 2600:3c01::3, 2600:3c01::8, 2600:3c01::4, 2600:3c01::b, 2600:3c01::c, 2600:3c01::6"}, + 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": "2600:3c02::3, - 2600:3c02::5, 2600:3c02::4, 2600:3c02::6, 2600:3c02::c, 2600:3c02::7, 2600:3c02::2, - 2600:3c02::9, 2600:3c02::8, 2600:3c02::b"}, "placement_group_limits": {"maximum_pgs_per_customer": + 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5, 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4, 207.192.69.5", - "ipv6": "2600:3c03::7, 2600:3c03::4, 2600:3c03::9, 2600:3c03::6, 2600:3c03::3, - 2600:3c03::c, 2600:3c03::5, 2600:3c03::b, 2600:3c03::2, 2600:3c03::8"}, "placement_group_limits": + "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20, - 109.74.194.20", "ipv6": "2a01:7e00::9, 2a01:7e00::3, 2a01:7e00::c, 2a01:7e00::5, - 2a01:7e00::6, 2a01:7e00::8, 2a01:7e00::b, 2a01:7e00::4, 2a01:7e00::7, 2a01:7e00::2"}, + 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", @@ -231,27 +250,27 @@ interactions: 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": - "2400:8901::5, 2400:8901::4, 2400:8901::b, 2400:8901::3, 2400:8901::9, 2400:8901::2, - 2400:8901::8, 2400:8901::7, 2400:8901::c, 2400:8901::6"}, "placement_group_limits": + "1234::5678, 1234::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": "2a01:7e01::5, 2a01:7e01::9, - 2a01:7e01::7, 2a01:7e01::c, 2a01:7e01::2, 2a01:7e01::4, 2a01:7e01::3, 2a01:7e01::6, - 2a01:7e01::b, 2a01:7e01::8"}, "placement_group_limits": {"maximum_pgs_per_customer": + 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": - "2400:8902::3, 2400:8902::6, 2400:8902::c, 2400:8902::4, 2400:8902::2, 2400:8902::8, - 2400:8902::7, 2400:8902::5, 2400:8902::b, 2400:8902::9"}, "placement_group_limits": + "1234::5678, 1234::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}' + "core"}], "page": 1, "pages": 1, "results": 27}' headers: Access-Control-Allow-Credentials: - "true" @@ -272,7 +291,7 @@ interactions: Content-Type: - application/json Expires: - - Fri, 31 May 2024 17:07:50 GMT + - Tue, 25 Jun 2024 14:30:25 GMT Pragma: - no-cache Strict-Transport-Security: @@ -289,10 +308,7 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - "400" X-Xss-Protection: @@ -301,7 +317,7 @@ interactions: code: 200 duration: "" - request: - body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-84aj9cb56z4d","root_pass":"!hPWN4|l)?E7f!61i#/h731.z''8a4!XGG3@|]=53UxaYRfVp-2]oNP7HmvIu5v1L","image":"linode/debian9","booted":false}' + body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-1vpd65q00t5h","root_pass":"8BBMaHktv+*!6d^D7P1H7q8+|#\\3Mc9wjm7S\u0026Sdsx={3w36RO4C3C3G|*#j4j,~P","image":"linode/debian9","booted":false}' form: {} headers: Accept: @@ -313,16 +329,16 @@ interactions: url: https://api.linode.com/v4beta/linode/instances method: POST response: - body: '{"id": 59541448, "label": "go-test-ins-84aj9cb56z4d", "group": "", "status": + body: '{"id": 60622699, "label": "go-test-ins-1vpd65q00t5h", "group": "", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", - "type": "g6-nanode-1", "ipv4": ["45.79.123.217"], "ipv6": "2400:8904::f03c:94ff:fe49:7387/128", + "type": "g6-nanode-1", "ipv4": ["45.79.117.65"], "ipv6": "1234::5678/128", "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": - "0b2d5aae2f89f7a14796533db6c3fd605a035d50", "has_user_data": false, "placement_group": - null}' + "b2853810c42e1d24c19bb72c445d06050f5237d1", "has_user_data": false, "placement_group": + null, "lke_cluster_id": null}' headers: Access-Control-Allow-Credentials: - "true" @@ -339,13 +355,13 @@ interactions: Connection: - keep-alive Content-Length: - - "765" + - "788" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Fri, 31 May 2024 17:07:50 GMT + - Tue, 25 Jun 2024 14:30:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -360,10 +376,7 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - "10" X-Xss-Protection: @@ -372,7 +385,7 @@ interactions: code: 200 duration: "" - request: - body: '{"label":"linodego-fw-test","rules":{"inbound":[{"action":"ACCEPT","label":"go-fwrule-test","ports":"22","protocol":"TCP","addresses":{"ipv4":["0.0.0.0/0"],"ipv6":["::0/0"]}}],"inbound_policy":"ACCEPT","outbound":[{"action":"ACCEPT","label":"go-fwrule-test","ports":"22","protocol":"TCP","addresses":{"ipv4":["0.0.0.0/0"],"ipv6":["::0/0"]}}],"outbound_policy":"ACCEPT"},"tags":["testing"],"devices":{}}' + body: '{"label":"linodego-fw-test","rules":{"inbound":[{"action":"ACCEPT","label":"go-fwrule-test","ports":"22","protocol":"TCP","addresses":{"ipv4":["0.0.0.0/0"],"ipv6":["1234::5678/0"]}}],"inbound_policy":"ACCEPT","outbound":[{"action":"ACCEPT","label":"go-fwrule-test","ports":"22","protocol":"TCP","addresses":{"ipv4":["0.0.0.0/0"],"ipv6":["1234::5678/0"]}}],"outbound_policy":"ACCEPT"},"tags":["testing"],"devices":{}}' form: {} headers: Accept: @@ -384,12 +397,12 @@ interactions: url: https://api.linode.com/v4beta/networking/firewalls method: POST response: - body: '{"id": 501336, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05", + body: '{"id": 600032, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "status": "enabled", "rules": {"inbound": [{"action": "ACCEPT", "label": "go-fwrule-test", "ports": "22", "protocol": - "TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["::/0"]}}], "inbound_policy": + "TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["1234::5678/0"]}}], "inbound_policy": "ACCEPT", "outbound": [{"action": "ACCEPT", "label": "go-fwrule-test", "ports": - "22", "protocol": "TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["::/0"]}}], + "22", "protocol": "TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["1234::5678/0"]}}], "outbound_policy": "ACCEPT", "version": 1, "fingerprint": "7bcc0f03"}, "tags": ["testing"], "entities": []}' headers: @@ -414,7 +427,7 @@ interactions: Content-Type: - application/json Expires: - - Fri, 31 May 2024 17:07:50 GMT + - Tue, 25 Jun 2024 14:30:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -429,10 +442,7 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - "400" X-Xss-Protection: @@ -441,7 +451,7 @@ interactions: code: 200 duration: "" - request: - body: '{"id":59541448,"type":"linode"}' + body: '{"id":60622699,"type":"linode"}' form: {} headers: Accept: @@ -450,12 +460,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/networking/firewalls/501336/devices + url: https://api.linode.com/v4beta/networking/firewalls/600032/devices method: POST response: - body: '{"id": 1144857, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", - "entity": {"id": 59541448, "type": "linode", "label": "go-test-ins-84aj9cb56z4d", - "url": "/v4/linode/instances/59541448"}}' + body: '{"id": 1297446, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", + "entity": {"id": 60622699, "type": "linode", "label": "go-test-ins-1vpd65q00t5h", + "url": "/v4/linode/instances/60622699"}}' headers: Access-Control-Allow-Credentials: - "true" @@ -478,7 +488,7 @@ interactions: Content-Type: - application/json Expires: - - Fri, 31 May 2024 17:07:51 GMT + - Tue, 25 Jun 2024 14:30:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -493,10 +503,7 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - "400" X-Xss-Protection: @@ -514,7 +521,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/networking/firewalls/501336/devices/1144857 + url: https://api.linode.com/v4beta/networking/firewalls/600032/devices/1297446 method: DELETE response: body: '{}' @@ -540,7 +547,7 @@ interactions: Content-Type: - application/json Expires: - - Fri, 31 May 2024 17:07:51 GMT + - Tue, 25 Jun 2024 14:30:27 GMT Pragma: - no-cache Strict-Transport-Security: @@ -555,10 +562,7 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - "400" X-Xss-Protection: @@ -576,7 +580,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/networking/firewalls/501336/devices/1144857 + url: https://api.linode.com/v4beta/networking/firewalls/600032/devices/1297446 method: GET response: body: '{"errors": [{"reason": "Not found"}]}' @@ -596,7 +600,7 @@ interactions: Content-Type: - application/json Expires: - - Fri, 31 May 2024 17:07:51 GMT + - Tue, 25 Jun 2024 14:30:27 GMT Pragma: - no-cache Vary: @@ -606,10 +610,7 @@ interactions: X-Frame-Options: - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - "400" status: 404 Not Found @@ -625,7 +626,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/networking/firewalls/501336 + url: https://api.linode.com/v4beta/networking/firewalls/600032 method: DELETE response: body: '{}' @@ -651,7 +652,7 @@ interactions: Content-Type: - application/json Expires: - - Fri, 31 May 2024 17:07:51 GMT + - Tue, 25 Jun 2024 14:30:27 GMT Pragma: - no-cache Strict-Transport-Security: @@ -666,10 +667,7 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - "400" X-Xss-Protection: @@ -687,7 +685,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/linode/instances/59541448 + url: https://api.linode.com/v4beta/linode/instances/60622699 method: DELETE response: body: '{}' @@ -713,7 +711,7 @@ interactions: Content-Type: - application/json Expires: - - Fri, 31 May 2024 17:07:51 GMT + - Tue, 25 Jun 2024 14:30:27 GMT Pragma: - no-cache Strict-Transport-Security: @@ -728,10 +726,7 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - "400" X-Xss-Protection: diff --git a/test/integration/fixtures/TestFirewallDevice_Get.yaml b/test/integration/fixtures/TestFirewallDevice_Get.yaml index 4874948de..6af2438c4 100644 --- a/test/integration/fixtures/TestFirewallDevice_Get.yaml +++ b/test/integration/fixtures/TestFirewallDevice_Get.yaml @@ -19,211 +19,230 @@ interactions: "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": "2400:8904::f03c:91ff:fea5:659, 2400:8904::f03c:91ff:fea5:9282, - 2400:8904::f03c:91ff:fea5:b9b3, 2400:8904::f03c:91ff:fea5:925a, 2400:8904::f03c:91ff:fea5:22cb, - 2400:8904::f03c:91ff:fea5:227a, 2400:8904::f03c:91ff:fea5:924c, 2400:8904::f03c:91ff:fea5:f7e2, - 2400:8904::f03c:91ff:fea5:2205, 2400:8904::f03c:91ff:fea5:9207"}, "placement_group_limits": + 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": "2600:3c04::f03c:91ff:fea9:f63, 2600:3c04::f03c:91ff:fea9:f6d, - 2600:3c04::f03c:91ff:fea9:f80, 2600:3c04::f03c:91ff:fea9:f0f, 2600:3c04::f03c:91ff:fea9:f99, - 2600:3c04::f03c:91ff:fea9:fbd, 2600:3c04::f03c:91ff:fea9:fdd, 2600:3c04::f03c:91ff:fea9:fe2, - 2600:3c04::f03c:91ff:fea9:f68, 2600:3c04::f03c:91ff:fea9:f4a"}, "placement_group_limits": + 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": "2400:8907::f03c:92ff:fe6e:ec8, 2400:8907::f03c:92ff:fe6e:98e4, - 2400:8907::f03c:92ff:fe6e:1c58, 2400:8907::f03c:92ff:fe6e:c299, 2400:8907::f03c:92ff:fe6e:c210, - 2400:8907::f03c:92ff:fe6e:c219, 2400:8907::f03c:92ff:fe6e:1c5c, 2400:8907::f03c:92ff:fe6e:c24e, - 2400:8907::f03c:92ff:fe6e:e6b, 2400:8907::f03c:92ff:fe6e:e3d"}, "placement_group_limits": + 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": "2600:3c05::f03c:93ff:feb6:43b6, - 2600:3c05::f03c:93ff:feb6:4365, 2600:3c05::f03c:93ff:feb6:43c2, 2600:3c05::f03c:93ff:feb6:e441, - 2600:3c05::f03c:93ff:feb6:94ef, 2600:3c05::f03c:93ff:feb6:94ba, 2600:3c05::f03c:93ff:feb6:94a8, - 2600:3c05::f03c:93ff:feb6:9413, 2600:3c05::f03c:93ff:feb6:9443, 2600:3c05::f03c:93ff:feb6:94e0"}, + 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": 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"], "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": - "2600:3c06::f03c:93ff:fed0:e5fc, 2600:3c06::f03c:93ff:fed0:e54b, 2600:3c06::f03c:93ff:fed0:e572, - 2600:3c06::f03c:93ff:fed0:e530, 2600:3c06::f03c:93ff:fed0:e597, 2600:3c06::f03c:93ff:fed0:e511, - 2600:3c06::f03c:93ff:fed0:e5f2, 2600:3c06::f03c:93ff:fed0:e5bf, 2600:3c06::f03c:93ff:fed0:e529, - 2600:3c06::f03c:93ff:fed0:e5a3"}, "placement_group_limits": {"maximum_pgs_per_customer": + "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": "2600:3c07::f03c:93ff:fef2:2e63, 2600:3c07::f03c:93ff:fef2:2ec7, 2600:3c07::f03c:93ff:fef2:0dee, - 2600:3c07::f03c:93ff:fef2:0d25, 2600:3c07::f03c:93ff:fef2:0de0, 2600:3c07::f03c:93ff:fef2:2e29, - 2600:3c07::f03c:93ff:fef2:0dda, 2600:3c07::f03c:93ff:fef2:0d82, 2600:3c07::f03c:93ff:fef2:b3ac, - 2600:3c07::f03c:93ff:fef2:b3a8"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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": "2600:3c0a::f03c:93ff:fe54:c6da, 2600:3c0a::f03c:93ff:fe54:c691, 2600:3c0a::f03c:93ff:fe54:c68d, - 2600:3c0a::f03c:93ff:fe54:c61e, 2600:3c0a::f03c:93ff:fe54:c653, 2600:3c0a::f03c:93ff:fe54:c64c, - 2600:3c0a::f03c:93ff:fe54:c68a, 2600:3c0a::f03c:93ff:fe54:c697, 2600:3c0a::f03c:93ff:fe54:c60f, - 2600:3c0a::f03c:93ff:fe54:c6a0"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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": "2600:3c0d::f03c:93ff:fe3d:51cb, - 2600:3c0d::f03c:93ff:fe3d:51a7, 2600:3c0d::f03c:93ff:fe3d:51a9, 2600:3c0d::f03c:93ff:fe3d:5119, - 2600:3c0d::f03c:93ff:fe3d:51fe, 2600:3c0d::f03c:93ff:fe3d:517c, 2600:3c0d::f03c:93ff:fe3d:5144, - 2600:3c0d::f03c:93ff:fe3d:5170, 2600:3c0d::f03c:93ff:fe3d:51cc, 2600:3c0d::f03c:93ff:fe3d:516c"}, + 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": 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": "2600:3c0e::f03c:93ff:fe9d:2d10, 2600:3c0e::f03c:93ff:fe9d:2d89, - 2600:3c0e::f03c:93ff:fe9d:2d79, 2600:3c0e::f03c:93ff:fe9d:2d96, 2600:3c0e::f03c:93ff:fe9d:2da5, - 2600:3c0e::f03c:93ff:fe9d:2d34, 2600:3c0e::f03c:93ff:fe9d:2d68, 2600:3c0e::f03c:93ff:fe9d:2d17, - 2600:3c0e::f03c:93ff:fe9d:2d45, 2600:3c0e::f03c:93ff:fe9d:2d5c"}, "placement_group_limits": + 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": "2600:3c09::f03c:93ff:fea9:4dbe, 2600:3c09::f03c:93ff:fea9:4d63, - 2600:3c09::f03c:93ff:fea9:4dce, 2600:3c09::f03c:93ff:fea9:4dbb, 2600:3c09::f03c:93ff:fea9:4d99, - 2600:3c09::f03c:93ff:fea9:4d26, 2600:3c09::f03c:93ff:fea9:4de0, 2600:3c09::f03c:93ff:fea9:4d69, - 2600:3c09::f03c:93ff:fea9:4dbf, 2600:3c09::f03c:93ff:fea9:4da6"}, "placement_group_limits": + 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": "2a01:7e02::f03c:93ff:feea:b585, 2a01:7e02::f03c:93ff:feea:b5ab, - 2a01:7e02::f03c:93ff:feea:b5c6, 2a01:7e02::f03c:93ff:feea:b592, 2a01:7e02::f03c:93ff:feea:b5aa, - 2a01:7e02::f03c:93ff:feea:b5d3, 2a01:7e02::f03c:93ff:feea:b5d7, 2a01:7e02::f03c:93ff:feea:b528, - 2a01:7e02::f03c:93ff:feea:b522, 2a01:7e02::f03c:93ff:feea:b51a"}, "placement_group_limits": + 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": "2600:3c08::f03c:93ff:fe7c:1135, 2600:3c08::f03c:93ff:fe7c:11f8, 2600:3c08::f03c:93ff:fe7c:11d2, - 2600:3c08::f03c:93ff:fe7c:11a7, 2600:3c08::f03c:93ff:fe7c:11ad, 2600:3c08::f03c:93ff:fe7c:110a, - 2600:3c08::f03c:93ff:fe7c:11f9, 2600:3c08::f03c:93ff:fe7c:1137, 2600:3c08::f03c:93ff:fe7c:11db, - 2600:3c08::f03c:93ff:fe7c:1164"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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": "2400:8905::f03c:93ff:fe9d:b085, 2400:8905::f03c:93ff:fe9d:b012, 2400:8905::f03c:93ff:fe9d:b09b, - 2400:8905::f03c:93ff:fe9d:b0d8, 2400:8905::f03c:93ff:fe9d:259f, 2400:8905::f03c:93ff:fe9d:b006, - 2400:8905::f03c:93ff:fe9d:b084, 2400:8905::f03c:93ff:fe9d:b0ce, 2400:8905::f03c:93ff:fe9d:25ea, - 2400:8905::f03c:93ff:fe9d:b086"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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": "2600:3c0b::f03c:93ff:feba:d513, 2600:3c0b::f03c:93ff:feba:d5c3, 2600:3c0b::f03c:93ff:feba:d597, - 2600:3c0b::f03c:93ff:feba:d5fb, 2600:3c0b::f03c:93ff:feba:d51f, 2600:3c0b::f03c:93ff:feba:d58e, - 2600:3c0b::f03c:93ff:feba:d5d5, 2600:3c0b::f03c:93ff:feba:d534, 2600:3c0b::f03c:93ff:feba:d57c, - 2600:3c0b::f03c:93ff:feba:d529"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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"], "status": "ok", "resolvers": {"ipv4": - "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32, + "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": "2a01:7e04::f03c:93ff:fead:d31f, 2a01:7e04::f03c:93ff:fead:d37f, 2a01:7e04::f03c:93ff:fead:d30c, - 2a01:7e04::f03c:93ff:fead:d318, 2a01:7e04::f03c:93ff:fead:d316, 2a01:7e04::f03c:93ff:fead:d339, - 2a01:7e04::f03c:93ff:fead:d367, 2a01:7e04::f03c:93ff:fead:d395, 2a01:7e04::f03c:93ff:fead:d3d0, - 2a01:7e04::f03c:93ff:fead:d38e"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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": "2600:3c0c::f03c:93ff:feed:a90b, 2600:3c0c::f03c:93ff:feed:a9a5, 2600:3c0c::f03c:93ff:feed:a935, - 2600:3c0c::f03c:93ff:feed:a930, 2600:3c0c::f03c:93ff:feed:a95c, 2600:3c0c::f03c:93ff:feed:a9ad, - 2600:3c0c::f03c:93ff:feed:a9f2, 2600:3c0c::f03c:93ff:feed:a9ff, 2600:3c0c::f03c:93ff:feed:a9c8, - 2600:3c0c::f03c:93ff:feed:a96b"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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": "2a01:7e03::f03c:93ff:feb1:b789, 2a01:7e03::f03c:93ff:feb1:b717, 2a01:7e03::f03c:93ff:feb1:b707, - 2a01:7e03::f03c:93ff:feb1:b7ab, 2a01:7e03::f03c:93ff:feb1:b7e2, 2a01:7e03::f03c:93ff:feb1:b709, - 2a01:7e03::f03c:93ff:feb1:b7a6, 2a01:7e03::f03c:93ff:feb1:b750, 2a01:7e03::f03c:93ff:feb1:b76e, - 2a01:7e03::f03c:93ff:feb1:b7a2"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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", "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": - "2600:3c00::2, 2600:3c00::9, 2600:3c00::7, 2600:3c00::5, 2600:3c00::3, 2600:3c00::8, - 2600:3c00::6, 2600:3c00::4, 2600:3c00::c, 2600:3c00::b"}, "placement_group_limits": + "1234::5678, 1234::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": "2600:3c01::2, 2600:3c01::9, 2600:3c01::5, 2600:3c01::7, - 2600:3c01::3, 2600:3c01::8, 2600:3c01::4, 2600:3c01::b, 2600:3c01::c, 2600:3c01::6"}, + 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": "2600:3c02::3, - 2600:3c02::5, 2600:3c02::4, 2600:3c02::6, 2600:3c02::c, 2600:3c02::7, 2600:3c02::2, - 2600:3c02::9, 2600:3c02::8, 2600:3c02::b"}, "placement_group_limits": {"maximum_pgs_per_customer": + 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5, 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4, 207.192.69.5", - "ipv6": "2600:3c03::7, 2600:3c03::4, 2600:3c03::9, 2600:3c03::6, 2600:3c03::3, - 2600:3c03::c, 2600:3c03::5, 2600:3c03::b, 2600:3c03::2, 2600:3c03::8"}, "placement_group_limits": + "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20, - 109.74.194.20", "ipv6": "2a01:7e00::9, 2a01:7e00::3, 2a01:7e00::c, 2a01:7e00::5, - 2a01:7e00::6, 2a01:7e00::8, 2a01:7e00::b, 2a01:7e00::4, 2a01:7e00::7, 2a01:7e00::2"}, + 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", @@ -231,27 +250,27 @@ interactions: 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": - "2400:8901::5, 2400:8901::4, 2400:8901::b, 2400:8901::3, 2400:8901::9, 2400:8901::2, - 2400:8901::8, 2400:8901::7, 2400:8901::c, 2400:8901::6"}, "placement_group_limits": + "1234::5678, 1234::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": "2a01:7e01::5, 2a01:7e01::9, - 2a01:7e01::7, 2a01:7e01::c, 2a01:7e01::2, 2a01:7e01::4, 2a01:7e01::3, 2a01:7e01::6, - 2a01:7e01::b, 2a01:7e01::8"}, "placement_group_limits": {"maximum_pgs_per_customer": + 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": - "2400:8902::3, 2400:8902::6, 2400:8902::c, 2400:8902::4, 2400:8902::2, 2400:8902::8, - 2400:8902::7, 2400:8902::5, 2400:8902::b, 2400:8902::9"}, "placement_group_limits": + "1234::5678, 1234::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}' + "core"}], "page": 1, "pages": 1, "results": 27}' headers: Access-Control-Allow-Credentials: - "true" @@ -272,7 +291,7 @@ interactions: Content-Type: - application/json Expires: - - Fri, 31 May 2024 17:07:48 GMT + - Tue, 25 Jun 2024 14:30:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -289,10 +308,7 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - "400" X-Xss-Protection: @@ -301,7 +317,7 @@ interactions: code: 200 duration: "" - request: - body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-yd2sop9l1168","root_pass":"J5G^cbyG4ajwNu4PNDa2w9~\u0026Q6~2\u003cU`4-+q9=c1z5R4~4WN1k2;\u003c2nKY''[=h;kEN","image":"linode/debian9","booted":false}' + body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-12bwme87mh31","root_pass":"/5L5Tr3L{L,0j^v,~2HJv6J5KRHd3sp)8dyHh9]1eFo8A{VnnXZ!6:0]7|m.1*u!","image":"linode/debian9","booted":false}' form: {} headers: Accept: @@ -313,16 +329,16 @@ interactions: url: https://api.linode.com/v4beta/linode/instances method: POST response: - body: '{"id": 59541447, "label": "go-test-ins-yd2sop9l1168", "group": "", "status": + body: '{"id": 60622698, "label": "go-test-ins-12bwme87mh31", "group": "", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", - "type": "g6-nanode-1", "ipv4": ["45.79.123.52"], "ipv6": "2400:8904::f03c:94ff:fe49:73c7/128", + "type": "g6-nanode-1", "ipv4": ["192.46.213.14"], "ipv6": "1234::5678/128", "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": - "71943b7db55fadab33ab3a638a6626fbcb4583e7", "has_user_data": false, "placement_group": - null}' + "285e9471b912df74a2b318bab58f5d6a0a1f8da8", "has_user_data": false, "placement_group": + null, "lke_cluster_id": null}' headers: Access-Control-Allow-Credentials: - "true" @@ -339,13 +355,13 @@ interactions: Connection: - keep-alive Content-Length: - - "764" + - "789" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Fri, 31 May 2024 17:07:48 GMT + - Tue, 25 Jun 2024 14:30:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -360,10 +376,7 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - "10" X-Xss-Protection: @@ -372,7 +385,7 @@ interactions: code: 200 duration: "" - request: - body: '{"label":"linodego-fw-test","rules":{"inbound":[{"action":"ACCEPT","label":"go-fwrule-test","ports":"22","protocol":"TCP","addresses":{"ipv4":["0.0.0.0/0"],"ipv6":["::0/0"]}}],"inbound_policy":"ACCEPT","outbound":[{"action":"ACCEPT","label":"go-fwrule-test","ports":"22","protocol":"TCP","addresses":{"ipv4":["0.0.0.0/0"],"ipv6":["::0/0"]}}],"outbound_policy":"ACCEPT"},"tags":["testing"],"devices":{}}' + body: '{"label":"linodego-fw-test","rules":{"inbound":[{"action":"ACCEPT","label":"go-fwrule-test","ports":"22","protocol":"TCP","addresses":{"ipv4":["0.0.0.0/0"],"ipv6":["1234::5678/0"]}}],"inbound_policy":"ACCEPT","outbound":[{"action":"ACCEPT","label":"go-fwrule-test","ports":"22","protocol":"TCP","addresses":{"ipv4":["0.0.0.0/0"],"ipv6":["1234::5678/0"]}}],"outbound_policy":"ACCEPT"},"tags":["testing"],"devices":{}}' form: {} headers: Accept: @@ -384,12 +397,12 @@ interactions: url: https://api.linode.com/v4beta/networking/firewalls method: POST response: - body: '{"id": 501335, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05", + body: '{"id": 600031, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "status": "enabled", "rules": {"inbound": [{"action": "ACCEPT", "label": "go-fwrule-test", "ports": "22", "protocol": - "TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["::/0"]}}], "inbound_policy": + "TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["1234::5678/0"]}}], "inbound_policy": "ACCEPT", "outbound": [{"action": "ACCEPT", "label": "go-fwrule-test", "ports": - "22", "protocol": "TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["::/0"]}}], + "22", "protocol": "TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["1234::5678/0"]}}], "outbound_policy": "ACCEPT", "version": 1, "fingerprint": "7bcc0f03"}, "tags": ["testing"], "entities": []}' headers: @@ -414,7 +427,7 @@ interactions: Content-Type: - application/json Expires: - - Fri, 31 May 2024 17:07:49 GMT + - Tue, 25 Jun 2024 14:30:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -429,10 +442,7 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - "400" X-Xss-Protection: @@ -441,7 +451,7 @@ interactions: code: 200 duration: "" - request: - body: '{"id":59541447,"type":"linode"}' + body: '{"id":60622698,"type":"linode"}' form: {} headers: Accept: @@ -450,12 +460,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/networking/firewalls/501335/devices + url: https://api.linode.com/v4beta/networking/firewalls/600031/devices method: POST response: - body: '{"id": 1144856, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", - "entity": {"id": 59541447, "type": "linode", "label": "go-test-ins-yd2sop9l1168", - "url": "/v4/linode/instances/59541447"}}' + body: '{"id": 1297445, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", + "entity": {"id": 60622698, "type": "linode", "label": "go-test-ins-12bwme87mh31", + "url": "/v4/linode/instances/60622698"}}' headers: Access-Control-Allow-Credentials: - "true" @@ -478,7 +488,7 @@ interactions: Content-Type: - application/json Expires: - - Fri, 31 May 2024 17:07:49 GMT + - Tue, 25 Jun 2024 14:30:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -493,10 +503,7 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - "400" X-Xss-Protection: @@ -514,12 +521,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/networking/firewalls/501335/devices/1144856 + url: https://api.linode.com/v4beta/networking/firewalls/600031/devices/1297445 method: GET response: - body: '{"id": 1144856, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", - "entity": {"id": 59541447, "type": "linode", "label": "go-test-ins-yd2sop9l1168", - "url": "/v4/linode/instances/59541447"}}' + body: '{"id": 1297445, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", + "entity": {"id": 60622698, "type": "linode", "label": "go-test-ins-12bwme87mh31", + "url": "/v4/linode/instances/60622698"}}' headers: Access-Control-Allow-Credentials: - "true" @@ -542,7 +549,7 @@ interactions: Content-Type: - application/json Expires: - - Fri, 31 May 2024 17:07:49 GMT + - Tue, 25 Jun 2024 14:30:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -558,10 +565,7 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - "400" X-Xss-Protection: @@ -579,7 +583,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/networking/firewalls/501335 + url: https://api.linode.com/v4beta/networking/firewalls/600031 method: DELETE response: body: '{}' @@ -605,7 +609,7 @@ interactions: Content-Type: - application/json Expires: - - Fri, 31 May 2024 17:07:49 GMT + - Tue, 25 Jun 2024 14:30:25 GMT Pragma: - no-cache Strict-Transport-Security: @@ -620,10 +624,7 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - "400" X-Xss-Protection: @@ -641,7 +642,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/linode/instances/59541447 + url: https://api.linode.com/v4beta/linode/instances/60622698 method: DELETE response: body: '{}' @@ -667,7 +668,7 @@ interactions: Content-Type: - application/json Expires: - - Fri, 31 May 2024 17:07:49 GMT + - Tue, 25 Jun 2024 14:30:25 GMT Pragma: - no-cache Strict-Transport-Security: @@ -682,10 +683,7 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - "400" X-Xss-Protection: diff --git a/test/integration/fixtures/TestFirewallDevices_List.yaml b/test/integration/fixtures/TestFirewallDevices_List.yaml index 5e55cdb1a..e6e291e16 100644 --- a/test/integration/fixtures/TestFirewallDevices_List.yaml +++ b/test/integration/fixtures/TestFirewallDevices_List.yaml @@ -19,211 +19,230 @@ interactions: "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": "2400:8904::f03c:91ff:fea5:659, 2400:8904::f03c:91ff:fea5:9282, - 2400:8904::f03c:91ff:fea5:b9b3, 2400:8904::f03c:91ff:fea5:925a, 2400:8904::f03c:91ff:fea5:22cb, - 2400:8904::f03c:91ff:fea5:227a, 2400:8904::f03c:91ff:fea5:924c, 2400:8904::f03c:91ff:fea5:f7e2, - 2400:8904::f03c:91ff:fea5:2205, 2400:8904::f03c:91ff:fea5:9207"}, "placement_group_limits": + 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": "2600:3c04::f03c:91ff:fea9:f63, 2600:3c04::f03c:91ff:fea9:f6d, - 2600:3c04::f03c:91ff:fea9:f80, 2600:3c04::f03c:91ff:fea9:f0f, 2600:3c04::f03c:91ff:fea9:f99, - 2600:3c04::f03c:91ff:fea9:fbd, 2600:3c04::f03c:91ff:fea9:fdd, 2600:3c04::f03c:91ff:fea9:fe2, - 2600:3c04::f03c:91ff:fea9:f68, 2600:3c04::f03c:91ff:fea9:f4a"}, "placement_group_limits": + 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": "2400:8907::f03c:92ff:fe6e:ec8, 2400:8907::f03c:92ff:fe6e:98e4, - 2400:8907::f03c:92ff:fe6e:1c58, 2400:8907::f03c:92ff:fe6e:c299, 2400:8907::f03c:92ff:fe6e:c210, - 2400:8907::f03c:92ff:fe6e:c219, 2400:8907::f03c:92ff:fe6e:1c5c, 2400:8907::f03c:92ff:fe6e:c24e, - 2400:8907::f03c:92ff:fe6e:e6b, 2400:8907::f03c:92ff:fe6e:e3d"}, "placement_group_limits": + 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": "2600:3c05::f03c:93ff:feb6:43b6, - 2600:3c05::f03c:93ff:feb6:4365, 2600:3c05::f03c:93ff:feb6:43c2, 2600:3c05::f03c:93ff:feb6:e441, - 2600:3c05::f03c:93ff:feb6:94ef, 2600:3c05::f03c:93ff:feb6:94ba, 2600:3c05::f03c:93ff:feb6:94a8, - 2600:3c05::f03c:93ff:feb6:9413, 2600:3c05::f03c:93ff:feb6:9443, 2600:3c05::f03c:93ff:feb6:94e0"}, + 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": 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"], "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": - "2600:3c06::f03c:93ff:fed0:e5fc, 2600:3c06::f03c:93ff:fed0:e54b, 2600:3c06::f03c:93ff:fed0:e572, - 2600:3c06::f03c:93ff:fed0:e530, 2600:3c06::f03c:93ff:fed0:e597, 2600:3c06::f03c:93ff:fed0:e511, - 2600:3c06::f03c:93ff:fed0:e5f2, 2600:3c06::f03c:93ff:fed0:e5bf, 2600:3c06::f03c:93ff:fed0:e529, - 2600:3c06::f03c:93ff:fed0:e5a3"}, "placement_group_limits": {"maximum_pgs_per_customer": + "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": "2600:3c07::f03c:93ff:fef2:2e63, 2600:3c07::f03c:93ff:fef2:2ec7, 2600:3c07::f03c:93ff:fef2:0dee, - 2600:3c07::f03c:93ff:fef2:0d25, 2600:3c07::f03c:93ff:fef2:0de0, 2600:3c07::f03c:93ff:fef2:2e29, - 2600:3c07::f03c:93ff:fef2:0dda, 2600:3c07::f03c:93ff:fef2:0d82, 2600:3c07::f03c:93ff:fef2:b3ac, - 2600:3c07::f03c:93ff:fef2:b3a8"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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": "2600:3c0a::f03c:93ff:fe54:c6da, 2600:3c0a::f03c:93ff:fe54:c691, 2600:3c0a::f03c:93ff:fe54:c68d, - 2600:3c0a::f03c:93ff:fe54:c61e, 2600:3c0a::f03c:93ff:fe54:c653, 2600:3c0a::f03c:93ff:fe54:c64c, - 2600:3c0a::f03c:93ff:fe54:c68a, 2600:3c0a::f03c:93ff:fe54:c697, 2600:3c0a::f03c:93ff:fe54:c60f, - 2600:3c0a::f03c:93ff:fe54:c6a0"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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": "2600:3c0d::f03c:93ff:fe3d:51cb, - 2600:3c0d::f03c:93ff:fe3d:51a7, 2600:3c0d::f03c:93ff:fe3d:51a9, 2600:3c0d::f03c:93ff:fe3d:5119, - 2600:3c0d::f03c:93ff:fe3d:51fe, 2600:3c0d::f03c:93ff:fe3d:517c, 2600:3c0d::f03c:93ff:fe3d:5144, - 2600:3c0d::f03c:93ff:fe3d:5170, 2600:3c0d::f03c:93ff:fe3d:51cc, 2600:3c0d::f03c:93ff:fe3d:516c"}, + 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": 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": "2600:3c0e::f03c:93ff:fe9d:2d10, 2600:3c0e::f03c:93ff:fe9d:2d89, - 2600:3c0e::f03c:93ff:fe9d:2d79, 2600:3c0e::f03c:93ff:fe9d:2d96, 2600:3c0e::f03c:93ff:fe9d:2da5, - 2600:3c0e::f03c:93ff:fe9d:2d34, 2600:3c0e::f03c:93ff:fe9d:2d68, 2600:3c0e::f03c:93ff:fe9d:2d17, - 2600:3c0e::f03c:93ff:fe9d:2d45, 2600:3c0e::f03c:93ff:fe9d:2d5c"}, "placement_group_limits": + 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": "2600:3c09::f03c:93ff:fea9:4dbe, 2600:3c09::f03c:93ff:fea9:4d63, - 2600:3c09::f03c:93ff:fea9:4dce, 2600:3c09::f03c:93ff:fea9:4dbb, 2600:3c09::f03c:93ff:fea9:4d99, - 2600:3c09::f03c:93ff:fea9:4d26, 2600:3c09::f03c:93ff:fea9:4de0, 2600:3c09::f03c:93ff:fea9:4d69, - 2600:3c09::f03c:93ff:fea9:4dbf, 2600:3c09::f03c:93ff:fea9:4da6"}, "placement_group_limits": + 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": "2a01:7e02::f03c:93ff:feea:b585, 2a01:7e02::f03c:93ff:feea:b5ab, - 2a01:7e02::f03c:93ff:feea:b5c6, 2a01:7e02::f03c:93ff:feea:b592, 2a01:7e02::f03c:93ff:feea:b5aa, - 2a01:7e02::f03c:93ff:feea:b5d3, 2a01:7e02::f03c:93ff:feea:b5d7, 2a01:7e02::f03c:93ff:feea:b528, - 2a01:7e02::f03c:93ff:feea:b522, 2a01:7e02::f03c:93ff:feea:b51a"}, "placement_group_limits": + 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": "2600:3c08::f03c:93ff:fe7c:1135, 2600:3c08::f03c:93ff:fe7c:11f8, 2600:3c08::f03c:93ff:fe7c:11d2, - 2600:3c08::f03c:93ff:fe7c:11a7, 2600:3c08::f03c:93ff:fe7c:11ad, 2600:3c08::f03c:93ff:fe7c:110a, - 2600:3c08::f03c:93ff:fe7c:11f9, 2600:3c08::f03c:93ff:fe7c:1137, 2600:3c08::f03c:93ff:fe7c:11db, - 2600:3c08::f03c:93ff:fe7c:1164"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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": "2400:8905::f03c:93ff:fe9d:b085, 2400:8905::f03c:93ff:fe9d:b012, 2400:8905::f03c:93ff:fe9d:b09b, - 2400:8905::f03c:93ff:fe9d:b0d8, 2400:8905::f03c:93ff:fe9d:259f, 2400:8905::f03c:93ff:fe9d:b006, - 2400:8905::f03c:93ff:fe9d:b084, 2400:8905::f03c:93ff:fe9d:b0ce, 2400:8905::f03c:93ff:fe9d:25ea, - 2400:8905::f03c:93ff:fe9d:b086"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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": "2600:3c0b::f03c:93ff:feba:d513, 2600:3c0b::f03c:93ff:feba:d5c3, 2600:3c0b::f03c:93ff:feba:d597, - 2600:3c0b::f03c:93ff:feba:d5fb, 2600:3c0b::f03c:93ff:feba:d51f, 2600:3c0b::f03c:93ff:feba:d58e, - 2600:3c0b::f03c:93ff:feba:d5d5, 2600:3c0b::f03c:93ff:feba:d534, 2600:3c0b::f03c:93ff:feba:d57c, - 2600:3c0b::f03c:93ff:feba:d529"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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"], "status": "ok", "resolvers": {"ipv4": - "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32, + "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": "2a01:7e04::f03c:93ff:fead:d31f, 2a01:7e04::f03c:93ff:fead:d37f, 2a01:7e04::f03c:93ff:fead:d30c, - 2a01:7e04::f03c:93ff:fead:d318, 2a01:7e04::f03c:93ff:fead:d316, 2a01:7e04::f03c:93ff:fead:d339, - 2a01:7e04::f03c:93ff:fead:d367, 2a01:7e04::f03c:93ff:fead:d395, 2a01:7e04::f03c:93ff:fead:d3d0, - 2a01:7e04::f03c:93ff:fead:d38e"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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": "2600:3c0c::f03c:93ff:feed:a90b, 2600:3c0c::f03c:93ff:feed:a9a5, 2600:3c0c::f03c:93ff:feed:a935, - 2600:3c0c::f03c:93ff:feed:a930, 2600:3c0c::f03c:93ff:feed:a95c, 2600:3c0c::f03c:93ff:feed:a9ad, - 2600:3c0c::f03c:93ff:feed:a9f2, 2600:3c0c::f03c:93ff:feed:a9ff, 2600:3c0c::f03c:93ff:feed:a9c8, - 2600:3c0c::f03c:93ff:feed:a96b"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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": "2a01:7e03::f03c:93ff:feb1:b789, 2a01:7e03::f03c:93ff:feb1:b717, 2a01:7e03::f03c:93ff:feb1:b707, - 2a01:7e03::f03c:93ff:feb1:b7ab, 2a01:7e03::f03c:93ff:feb1:b7e2, 2a01:7e03::f03c:93ff:feb1:b709, - 2a01:7e03::f03c:93ff:feb1:b7a6, 2a01:7e03::f03c:93ff:feb1:b750, 2a01:7e03::f03c:93ff:feb1:b76e, - 2a01:7e03::f03c:93ff:feb1:b7a2"}, "placement_group_limits": {"maximum_pgs_per_customer": + "ipv6": "1234::5678, 1234::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", "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": - "2600:3c00::2, 2600:3c00::9, 2600:3c00::7, 2600:3c00::5, 2600:3c00::3, 2600:3c00::8, - 2600:3c00::6, 2600:3c00::4, 2600:3c00::c, 2600:3c00::b"}, "placement_group_limits": + "1234::5678, 1234::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": "2600:3c01::2, 2600:3c01::9, 2600:3c01::5, 2600:3c01::7, - 2600:3c01::3, 2600:3c01::8, 2600:3c01::4, 2600:3c01::b, 2600:3c01::c, 2600:3c01::6"}, + 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": "2600:3c02::3, - 2600:3c02::5, 2600:3c02::4, 2600:3c02::6, 2600:3c02::c, 2600:3c02::7, 2600:3c02::2, - 2600:3c02::9, 2600:3c02::8, 2600:3c02::b"}, "placement_group_limits": {"maximum_pgs_per_customer": + 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5, 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4, 207.192.69.5", - "ipv6": "2600:3c03::7, 2600:3c03::4, 2600:3c03::9, 2600:3c03::6, 2600:3c03::3, - 2600:3c03::c, 2600:3c03::5, 2600:3c03::b, 2600:3c03::2, 2600:3c03::8"}, "placement_group_limits": + "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20, - 109.74.194.20", "ipv6": "2a01:7e00::9, 2a01:7e00::3, 2a01:7e00::c, 2a01:7e00::5, - 2a01:7e00::6, 2a01:7e00::8, 2a01:7e00::b, 2a01:7e00::4, 2a01:7e00::7, 2a01:7e00::2"}, + 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", @@ -231,27 +250,27 @@ interactions: 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": - "2400:8901::5, 2400:8901::4, 2400:8901::b, 2400:8901::3, 2400:8901::9, 2400:8901::2, - 2400:8901::8, 2400:8901::7, 2400:8901::c, 2400:8901::6"}, "placement_group_limits": + "1234::5678, 1234::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": "2a01:7e01::5, 2a01:7e01::9, - 2a01:7e01::7, 2a01:7e01::c, 2a01:7e01::2, 2a01:7e01::4, 2a01:7e01::3, 2a01:7e01::6, - 2a01:7e01::b, 2a01:7e01::8"}, "placement_group_limits": {"maximum_pgs_per_customer": + 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": - "2400:8902::3, 2400:8902::6, 2400:8902::c, 2400:8902::4, 2400:8902::2, 2400:8902::8, - 2400:8902::7, 2400:8902::5, 2400:8902::b, 2400:8902::9"}, "placement_group_limits": + "1234::5678, 1234::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}' + "core"}], "page": 1, "pages": 1, "results": 27}' headers: Access-Control-Allow-Credentials: - "true" @@ -272,7 +291,7 @@ interactions: Content-Type: - application/json Expires: - - Fri, 31 May 2024 17:07:46 GMT + - Tue, 25 Jun 2024 14:30:21 GMT Pragma: - no-cache Strict-Transport-Security: @@ -289,10 +308,7 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - "400" X-Xss-Protection: @@ -301,7 +317,7 @@ interactions: code: 200 duration: "" - request: - body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-6f5ok44h3jk4","root_pass":"A~?k5y+^4idX67m:koZXD`{NT93e;7Gw-$eb1)B5Ndrt40?Q27*5V[G6^e!AiHC1","image":"linode/debian9","booted":false}' + body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-1i81hyqs74e9","root_pass":"cpZ]$y7\\9jdV-tp\u003cq!835!skdi`(bFF;)24]~ENY[Q18L.KY7b4Y9ROK5^Ms67b5","image":"linode/debian9","booted":false}' form: {} headers: Accept: @@ -313,16 +329,16 @@ interactions: url: https://api.linode.com/v4beta/linode/instances method: POST response: - body: '{"id": 59541446, "label": "go-test-ins-6f5ok44h3jk4", "group": "", "status": + body: '{"id": 60622696, "label": "go-test-ins-1i81hyqs74e9", "group": "", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", - "type": "g6-nanode-1", "ipv4": ["45.79.123.9"], "ipv6": "2400:8904::f03c:94ff:fe49:734e/128", + "type": "g6-nanode-1", "ipv4": ["45.79.124.202"], "ipv6": "1234::5678/128", "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": - "d80b575c03e15cd02b19144819366fbb2a318648", "has_user_data": false, "placement_group": - null}' + "64f3e61b2e736f99ca5f41dd36bbc57071b08d42", "has_user_data": false, "placement_group": + null, "lke_cluster_id": null}' headers: Access-Control-Allow-Credentials: - "true" @@ -339,13 +355,13 @@ interactions: Connection: - keep-alive Content-Length: - - "763" + - "789" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Fri, 31 May 2024 17:07:47 GMT + - Tue, 25 Jun 2024 14:30:22 GMT Pragma: - no-cache Strict-Transport-Security: @@ -360,10 +376,7 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - "10" X-Xss-Protection: @@ -372,7 +385,7 @@ interactions: code: 200 duration: "" - request: - body: '{"label":"linodego-fw-test","rules":{"inbound":[{"action":"ACCEPT","label":"go-fwrule-test","ports":"22","protocol":"TCP","addresses":{"ipv4":["0.0.0.0/0"],"ipv6":["::0/0"]}}],"inbound_policy":"ACCEPT","outbound":[{"action":"ACCEPT","label":"go-fwrule-test","ports":"22","protocol":"TCP","addresses":{"ipv4":["0.0.0.0/0"],"ipv6":["::0/0"]}}],"outbound_policy":"ACCEPT"},"tags":["testing"],"devices":{"linodes":[59541446]}}' + body: '{"label":"linodego-fw-test","rules":{"inbound":[{"action":"ACCEPT","label":"go-fwrule-test","ports":"22","protocol":"TCP","addresses":{"ipv4":["0.0.0.0/0"],"ipv6":["1234::5678/0"]}}],"inbound_policy":"ACCEPT","outbound":[{"action":"ACCEPT","label":"go-fwrule-test","ports":"22","protocol":"TCP","addresses":{"ipv4":["0.0.0.0/0"],"ipv6":["1234::5678/0"]}}],"outbound_policy":"ACCEPT"},"tags":["testing"],"devices":{"linodes":[60622696]}}' form: {} headers: Accept: @@ -384,15 +397,15 @@ interactions: url: https://api.linode.com/v4beta/networking/firewalls method: POST response: - body: '{"id": 501334, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05", + body: '{"id": 600030, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "status": "enabled", "rules": {"inbound": [{"action": "ACCEPT", "label": "go-fwrule-test", "ports": "22", "protocol": - "TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["::/0"]}}], "inbound_policy": + "TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["1234::5678/0"]}}], "inbound_policy": "ACCEPT", "outbound": [{"action": "ACCEPT", "label": "go-fwrule-test", "ports": - "22", "protocol": "TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["::/0"]}}], + "22", "protocol": "TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["1234::5678/0"]}}], "outbound_policy": "ACCEPT", "version": 1, "fingerprint": "7bcc0f03"}, "tags": - ["testing"], "entities": [{"id": 59541446, "type": "linode", "label": "go-test-ins-6f5ok44h3jk4", - "url": "/v4/linode/instances/59541446"}]}' + ["testing"], "entities": [{"id": 60622696, "type": "linode", "label": "go-test-ins-1i81hyqs74e9", + "url": "/v4/linode/instances/60622696"}]}' headers: Access-Control-Allow-Credentials: - "true" @@ -415,7 +428,7 @@ interactions: Content-Type: - application/json Expires: - - Fri, 31 May 2024 17:07:47 GMT + - Tue, 25 Jun 2024 14:30:22 GMT Pragma: - no-cache Strict-Transport-Security: @@ -430,10 +443,7 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - "400" X-Xss-Protection: @@ -451,12 +461,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/networking/firewalls/501334/devices + url: https://api.linode.com/v4beta/networking/firewalls/600030/devices?page=1 method: GET response: - body: '{"data": [{"id": 1144855, "created": "2018-01-02T03:04:05", "updated": - "2018-01-02T03:04:05", "entity": {"id": 59541446, "type": "linode", "label": - "go-test-ins-6f5ok44h3jk4", "url": "/v4/linode/instances/59541446"}}], "page": + body: '{"data": [{"id": 1297444, "created": "2018-01-02T03:04:05", "updated": + "2018-01-02T03:04:05", "entity": {"id": 60622696, "type": "linode", "label": + "go-test-ins-1i81hyqs74e9", "url": "/v4/linode/instances/60622696"}}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -480,7 +490,7 @@ interactions: Content-Type: - application/json Expires: - - Fri, 31 May 2024 17:07:47 GMT + - Tue, 25 Jun 2024 14:30:22 GMT Pragma: - no-cache Strict-Transport-Security: @@ -496,10 +506,7 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - "400" X-Xss-Protection: @@ -517,7 +524,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/networking/firewalls/501334 + url: https://api.linode.com/v4beta/networking/firewalls/600030 method: DELETE response: body: '{}' @@ -543,7 +550,7 @@ interactions: Content-Type: - application/json Expires: - - Fri, 31 May 2024 17:07:47 GMT + - Tue, 25 Jun 2024 14:30:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -558,10 +565,7 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - "400" X-Xss-Protection: @@ -579,7 +583,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/linode/instances/59541446 + url: https://api.linode.com/v4beta/linode/instances/60622696 method: DELETE response: body: '{}' @@ -605,7 +609,7 @@ interactions: Content-Type: - application/json Expires: - - Fri, 31 May 2024 17:07:48 GMT + - Tue, 25 Jun 2024 14:30:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -620,10 +624,7 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - "400" X-Xss-Protection: diff --git a/test/integration/fixtures/TestUser_Get.yaml b/test/integration/fixtures/TestUser_Get.yaml index a789c87af..c1e68c9a5 100644 --- a/test/integration/fixtures/TestUser_Get.yaml +++ b/test/integration/fixtures/TestUser_Get.yaml @@ -29,19 +29,15 @@ 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 + - private, max-age=60, s-maxage=60 Content-Length: - "240" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Expires: - - Tue, 13 Feb 2024 19:39:34 GMT - Pragma: - - no-cache + Server: + - nginx Strict-Transport-Security: - max-age=31536000 Vary: @@ -90,19 +86,16 @@ 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 + - private, max-age=0, s-maxage=0, no-cache, no-store + - private, max-age=60, s-maxage=60 Content-Length: - "240" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Expires: - - Tue, 13 Feb 2024 19:39:34 GMT - Pragma: - - no-cache + Server: + - nginx Strict-Transport-Security: - max-age=31536000 Vary: @@ -150,19 +143,15 @@ 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 + - private, max-age=60, s-maxage=60 Content-Length: - "2" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Expires: - - Tue, 13 Feb 2024 19:39:34 GMT - Pragma: - - no-cache + Server: + - nginx Strict-Transport-Security: - max-age=31536000 Vary: diff --git a/test/integration/fixtures/TestUser_GetMissing.yaml b/test/integration/fixtures/TestUser_GetMissing.yaml index 4f6059800..193b11514 100644 --- a/test/integration/fixtures/TestUser_GetMissing.yaml +++ b/test/integration/fixtures/TestUser_GetMissing.yaml @@ -23,17 +23,13 @@ interactions: Access-Control-Allow-Origin: - '*' Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive + - private, max-age=0, s-maxage=0, no-cache, no-store Content-Length: - "37" Content-Type: - application/json - Expires: - - Tue, 13 Feb 2024 19:39:32 GMT - Pragma: - - no-cache + Server: + - nginx Vary: - Authorization, X-Filter X-Accepted-Oauth-Scopes: diff --git a/test/integration/fixtures/TestUser_Update.yaml b/test/integration/fixtures/TestUser_Update.yaml index 455b98f86..3bfffc8c7 100644 --- a/test/integration/fixtures/TestUser_Update.yaml +++ b/test/integration/fixtures/TestUser_Update.yaml @@ -29,19 +29,15 @@ 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 + - private, max-age=60, s-maxage=60 Content-Length: - "247" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Expires: - - Tue, 13 Feb 2024 19:39:35 GMT - Pragma: - - no-cache + Server: + - nginx Strict-Transport-Security: - max-age=31536000 Vary: @@ -90,19 +86,15 @@ 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 + - private, max-age=60, s-maxage=60 Content-Length: - "254" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Expires: - - Tue, 13 Feb 2024 19:39:35 GMT - Pragma: - - no-cache + Server: + - nginx Strict-Transport-Security: - max-age=31536000 Vary: @@ -149,19 +141,15 @@ 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 + - private, max-age=60, s-maxage=60 Content-Length: - "2" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Expires: - - Tue, 13 Feb 2024 19:39:35 GMT - Pragma: - - no-cache + Server: + - nginx Strict-Transport-Security: - max-age=31536000 Vary: diff --git a/test/integration/fixtures/TestUsers_List.yaml b/test/integration/fixtures/TestUsers_List.yaml index 3cf94d2fc..45ea0bc1c 100644 --- a/test/integration/fixtures/TestUsers_List.yaml +++ b/test/integration/fixtures/TestUsers_List.yaml @@ -29,19 +29,15 @@ 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 + - private, max-age=60, s-maxage=60 Content-Length: - "243" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Expires: - - Tue, 13 Feb 2024 19:39:36 GMT - Pragma: - - no-cache + Server: + - nginx Strict-Transport-Security: - max-age=31536000 Vary: @@ -72,18 +68,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/account/users + url: https://api.linode.com/v4beta/account/users?page=1 method: GET response: - body: '{"data": [{"username": "lgarber-dev", "email": "lgarber@akamai.com", "restricted": - false, "ssh_keys": ["tf_test_authorized_keys", "main", "tf_test_authorized_keys", - "dev-server-rsa", "tf_test_authorized_keys", "foo", "fosdfo"], "tfa_enabled": - true, "verified_phone_number": null, "password_created": null, "last_login": - {"login_datetime": "2018-01-02T03:04:05", "status": "successful"}, "user_type": - "default"}, {"username": "linodegotest-listuser", "email": "linodegotest-listuser@example.com", - "restricted": false, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number": - null, "password_created": null, "last_login": null, "user_type": "default"}], - "page": 1, "pages": 1, "results": 2}' + body: '{"data": [{"username": "ErikZilber", "email": "ezilber@akamai.com", "restricted": + false, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number": "+11234567890", + "password_created": "2018-01-02T03:04:05", "last_login": {"login_datetime": + "2018-01-02T03:04:05", "status": "successful"}, "user_type": "default"}, {"username": + "linodegotest-listuser", "email": "linodegotest-listuser@example.com", "restricted": + false, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number": null, + "password_created": null, "last_login": null, "user_type": "default"}], "page": + 1, "pages": 1, "results": 2}' headers: Access-Control-Allow-Credentials: - "true" @@ -96,22 +91,18 @@ 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: - - "694" + - private, max-age=0, s-maxage=0, no-cache, no-store + - private, max-age=60, s-maxage=60 Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Expires: - - Tue, 13 Feb 2024 19:39:36 GMT - Pragma: - - no-cache + Server: + - nginx Strict-Transport-Security: - max-age=31536000 Vary: + - Accept-Encoding - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: @@ -156,19 +147,15 @@ 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 + - private, max-age=60, s-maxage=60 Content-Length: - "2" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Expires: - - Tue, 13 Feb 2024 19:39:37 GMT - Pragma: - - no-cache + Server: + - nginx Strict-Transport-Security: - max-age=31536000 Vary: