From ea893efa17a269f183f68d5b1827b2f7f280a623 Mon Sep 17 00:00:00 2001 From: Erik Zilber Date: Wed, 10 Jul 2024 09:34:20 -0400 Subject: [PATCH] Migrate LKE and MySQL Client Functions to Utilize Request Helpers (#540) * Migrated files and reran fixtures * Added missing paged response structs * Fixes --- lke_cluster_pools.go | 3 - lke_clusters.go | 168 +- lke_node_pools.go | 71 +- longview.go | 78 +- longview_subscriptions.go | 40 +- mysql.go | 129 +- paged_response_structs.go | 28 + .../fixtures/TestDatabase_MySQL_Suite.yaml | 7226 +++++++++-------- .../TestLKECluster_APIEndpoints_List.yaml | 493 +- .../TestLKECluster_Dashboard_Get.yaml | 385 +- .../fixtures/TestLKECluster_GetFound.yaml | 368 +- .../fixtures/TestLKECluster_GetMissing.yaml | 12 +- .../TestLKECluster_Kubeconfig_Get.yaml | 620 +- .../TestLKECluster_Nodes_Recycle.yaml | 361 +- .../fixtures/TestLKECluster_Update.yaml | 369 +- .../fixtures/TestLKECluster_WaitForReady.yaml | 572 +- .../TestLKECluster_WaitForReady_Cluster.yaml | 90 +- .../fixtures/TestLKECluster_withACL.yaml | 288 +- .../fixtures/TestLKEClusters_List.yaml | 368 +- .../fixtures/TestLKENodePoolNode_Delete.yaml | 424 +- .../fixtures/TestLKENodePool_GetFound.yaml | 412 +- .../fixtures/TestLKENodePool_GetMissing.yaml | 12 +- .../fixtures/TestLKENodePool_Update.yaml | 439 +- .../fixtures/TestLKENodePools_List.yaml | 420 +- .../fixtures/TestLKEVersions_List.yaml | 20 +- .../fixtures/TestLongviewClient_Create.yaml | 49 +- .../fixtures/TestLongviewClient_Delete.yaml | 64 +- .../fixtures/TestLongviewClient_Get.yaml | 68 +- .../fixtures/TestLongviewClient_Update.yaml | 48 +- .../fixtures/TestLongviewPlan_Get.yaml | 13 +- .../fixtures/TestLongviewPlan_Update.yaml | 37 +- test/integration/lke_clusters_test.go | 4 +- test/integration/mysql_test.go | 2 +- 33 files changed, 8294 insertions(+), 5387 deletions(-) diff --git a/lke_cluster_pools.go b/lke_cluster_pools.go index e31148774..5f5207655 100644 --- a/lke_cluster_pools.go +++ b/lke_cluster_pools.go @@ -22,9 +22,6 @@ type LKEClusterPoolCreateOptions = LKENodePoolCreateOptions // Deprecated: LKEClusterPoolUpdateOptions fields are those accepted by UpdateLKEClusterPool type LKEClusterPoolUpdateOptions = LKENodePoolUpdateOptions -// Deprecated: LKEClusterPoolsPagedResponse represents a paginated LKEClusterPool API response -type LKEClusterPoolsPagedResponse = LKENodePoolsPagedResponse - // Deprecated: ListLKEClusterPools lists LKEClusterPools func (c *Client) ListLKEClusterPools(ctx context.Context, clusterID int, opts *ListOptions) ([]LKEClusterPool, error) { return c.ListLKENodePools(ctx, clusterID, opts) diff --git a/lke_clusters.go b/lke_clusters.go index 7cc6d77a5..358801551 100644 --- a/lke_clusters.go +++ b/lke_clusters.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" ) @@ -133,32 +130,11 @@ func (i LKECluster) GetUpdateOptions() (o LKEClusterUpdateOptions) { return } -// LKEVersionsPagedResponse represents a paginated LKEVersion API response -type LKEVersionsPagedResponse struct { - *PageOptions - Data []LKEVersion `json:"data"` -} - -// endpoint gets the endpoint URL for LKEVersion -func (LKEVersionsPagedResponse) endpoint(_ ...any) string { - return "lke/versions" -} - -func (resp *LKEVersionsPagedResponse) castResult(r *resty.Request, e string) (int, int, error) { - res, err := coupleAPIErrors(r.SetResult(LKEVersionsPagedResponse{}).Get(e)) - if err != nil { - return 0, 0, err - } - castedRes := res.Result().(*LKEVersionsPagedResponse) - resp.Data = append(resp.Data, castedRes.Data...) - return castedRes.Pages, castedRes.Results, nil -} - // ListLKEVersions lists the Kubernetes versions available through LKE. This endpoint is cached by default. func (c *Client) ListLKEVersions(ctx context.Context, opts *ListOptions) ([]LKEVersion, error) { - response := LKEVersionsPagedResponse{} + e := "lke/versions" - endpoint, err := generateListCacheURL(response.endpoint(), opts) + endpoint, err := generateListCacheURL(e, opts) if err != nil { return nil, err } @@ -167,198 +143,134 @@ func (c *Client) ListLKEVersions(ctx context.Context, opts *ListOptions) ([]LKEV return result.([]LKEVersion), nil } - err = c.listHelper(ctx, &response, opts) + response, err := getPaginatedResults[LKEVersion](ctx, c, e, opts) if err != nil { return nil, err } - c.addCachedResponse(endpoint, response.Data, &cacheExpiryTime) + c.addCachedResponse(endpoint, response, &cacheExpiryTime) - return response.Data, nil + return response, nil } // GetLKEVersion gets details about a specific LKE Version. This endpoint is cached by default. func (c *Client) GetLKEVersion(ctx context.Context, version string) (*LKEVersion, error) { - version = url.PathEscape(version) - e := fmt.Sprintf("lke/versions/%s", version) + e := formatAPIPath("lke/versions/%s", version) if result := c.getCachedResponse(e); result != nil { result := result.(LKEVersion) return &result, nil } - req := c.R(ctx).SetResult(&LKEVersion{}) - r, err := coupleAPIErrors(req.Get(e)) + response, err := doGETRequest[LKEVersion](ctx, c, e) if err != nil { return nil, err } - c.addCachedResponse(e, r.Result(), &cacheExpiryTime) - - return r.Result().(*LKEVersion), nil -} - -// LKEClusterAPIEndpointsPagedResponse represents a paginated LKEClusterAPIEndpoints API response -type LKEClusterAPIEndpointsPagedResponse struct { - *PageOptions - Data []LKEClusterAPIEndpoint `json:"data"` -} + c.addCachedResponse(e, response, &cacheExpiryTime) -// endpoint gets the endpoint URL for LKEClusterAPIEndpointsPagedResponse -func (LKEClusterAPIEndpointsPagedResponse) endpoint(ids ...any) string { - id := ids[0].(int) - return fmt.Sprintf("lke/clusters/%d/api-endpoints", id) -} - -func (resp *LKEClusterAPIEndpointsPagedResponse) castResult(r *resty.Request, e string) (int, int, error) { - res, err := coupleAPIErrors(r.SetResult(LKEClusterAPIEndpointsPagedResponse{}).Get(e)) - if err != nil { - return 0, 0, err - } - castedRes := res.Result().(*LKEClusterAPIEndpointsPagedResponse) - resp.Data = append(resp.Data, castedRes.Data...) - return castedRes.Pages, castedRes.Results, nil + return response, nil } // ListLKEClusterAPIEndpoints gets the API Endpoint for the LKE Cluster specified func (c *Client) ListLKEClusterAPIEndpoints(ctx context.Context, clusterID int, opts *ListOptions) ([]LKEClusterAPIEndpoint, error) { - response := LKEClusterAPIEndpointsPagedResponse{} - err := c.listHelper(ctx, &response, opts, clusterID) + response, err := getPaginatedResults[LKEClusterAPIEndpoint](ctx, c, formatAPIPath("lke/clusters/%d/api-endpoints", clusterID), opts) if err != nil { return nil, err } - return response.Data, nil -} - -// LKEClustersPagedResponse represents a paginated LKECluster API response -type LKEClustersPagedResponse struct { - *PageOptions - Data []LKECluster `json:"data"` -} - -// endpoint gets the endpoint URL for LKECluster -func (LKEClustersPagedResponse) endpoint(_ ...any) string { - return "lke/clusters" -} -func (resp *LKEClustersPagedResponse) castResult(r *resty.Request, e string) (int, int, error) { - res, err := coupleAPIErrors(r.SetResult(LKEClustersPagedResponse{}).Get(e)) - if err != nil { - return 0, 0, err - } - castedRes := res.Result().(*LKEClustersPagedResponse) - resp.Data = append(resp.Data, castedRes.Data...) - return castedRes.Pages, castedRes.Results, nil + return response, nil } // ListLKEClusters lists LKEClusters func (c *Client) ListLKEClusters(ctx context.Context, opts *ListOptions) ([]LKECluster, error) { - response := LKEClustersPagedResponse{} - err := c.listHelper(ctx, &response, opts) - if err != nil { - return nil, err - } - return response.Data, nil + response, err := getPaginatedResults[LKECluster](ctx, c, "lke/clusters", opts) + return response, err } // GetLKECluster gets the lkeCluster with the provided ID func (c *Client) GetLKECluster(ctx context.Context, clusterID int) (*LKECluster, error) { - e := fmt.Sprintf("lke/clusters/%d", clusterID) - req := c.R(ctx).SetResult(&LKECluster{}) - r, err := coupleAPIErrors(req.Get(e)) + e := formatAPIPath("lke/clusters/%d", clusterID) + response, err := doGETRequest[LKECluster](ctx, c, e) if err != nil { return nil, err } - return r.Result().(*LKECluster), nil + + return response, nil } // CreateLKECluster creates a LKECluster func (c *Client) CreateLKECluster(ctx context.Context, opts LKEClusterCreateOptions) (*LKECluster, error) { - body, err := json.Marshal(opts) - if err != nil { - return nil, err - } - e := "lke/clusters" - req := c.R(ctx).SetResult(&LKECluster{}).SetBody(string(body)) - r, err := coupleAPIErrors(req.Post(e)) + response, err := doPOSTRequest[LKECluster](ctx, c, e, opts) if err != nil { return nil, err } - return r.Result().(*LKECluster), nil + + return response, nil } // UpdateLKECluster updates the LKECluster with the specified id func (c *Client) UpdateLKECluster(ctx context.Context, clusterID int, opts LKEClusterUpdateOptions) (*LKECluster, error) { - body, err := json.Marshal(opts) + e := formatAPIPath("lke/clusters/%d", clusterID) + response, err := doPUTRequest[LKECluster](ctx, c, e, opts) if err != nil { return nil, err } - e := fmt.Sprintf("lke/clusters/%d", clusterID) - req := c.R(ctx).SetResult(&LKECluster{}).SetBody(string(body)) - r, err := coupleAPIErrors(req.Put(e)) - if err != nil { - return nil, err - } - return r.Result().(*LKECluster), nil + return response, nil } // DeleteLKECluster deletes the LKECluster with the specified id func (c *Client) DeleteLKECluster(ctx context.Context, clusterID int) error { - e := fmt.Sprintf("lke/clusters/%d", clusterID) - _, err := coupleAPIErrors(c.R(ctx).Delete(e)) + e := formatAPIPath("lke/clusters/%d", clusterID) + err := doDELETERequest(ctx, c, e) return err } // GetLKEClusterKubeconfig gets the Kubeconfig for the LKE Cluster specified func (c *Client) GetLKEClusterKubeconfig(ctx context.Context, clusterID int) (*LKEClusterKubeconfig, error) { - e := fmt.Sprintf("lke/clusters/%d/kubeconfig", clusterID) - req := c.R(ctx).SetResult(&LKEClusterKubeconfig{}) - r, err := coupleAPIErrors(req.Get(e)) + e := formatAPIPath("lke/clusters/%d/kubeconfig", clusterID) + response, err := doGETRequest[LKEClusterKubeconfig](ctx, c, e) if err != nil { return nil, err } - return r.Result().(*LKEClusterKubeconfig), nil + + return response, nil } // GetLKEClusterDashboard gets information about the dashboard for an LKE cluster func (c *Client) GetLKEClusterDashboard(ctx context.Context, clusterID int) (*LKEClusterDashboard, error) { - e := fmt.Sprintf("lke/clusters/%d/dashboard", clusterID) - req := c.R(ctx).SetResult(&LKEClusterDashboard{}) - r, err := coupleAPIErrors(req.Get(e)) + e := formatAPIPath("lke/clusters/%d/dashboard", clusterID) + response, err := doGETRequest[LKEClusterDashboard](ctx, c, e) if err != nil { return nil, err } - return r.Result().(*LKEClusterDashboard), nil + + return response, nil } // RecycleLKEClusterNodes recycles all nodes in all pools of the specified LKE Cluster. func (c *Client) RecycleLKEClusterNodes(ctx context.Context, clusterID int) error { - e := fmt.Sprintf("lke/clusters/%d/recycle", clusterID) - _, err := coupleAPIErrors(c.R(ctx).Post(e)) + e := formatAPIPath("lke/clusters/%d/recycle", clusterID) + _, err := doPOSTRequest[LKECluster, any](ctx, c, e) return err } // RegenerateLKECluster regenerates the Kubeconfig file and/or the service account token for the specified LKE Cluster. func (c *Client) RegenerateLKECluster(ctx context.Context, clusterID int, opts LKEClusterRegenerateOptions) (*LKECluster, error) { - body, err := json.Marshal(opts) + e := formatAPIPath("lke/clusters/%d/regenerate", clusterID) + response, err := doPOSTRequest[LKECluster](ctx, c, e, opts) if err != nil { return nil, err } - e := fmt.Sprintf("lke/clusters/%d/regenerate", clusterID) - req := c.R(ctx).SetResult(&LKECluster{}).SetBody(string(body)) - r, err := coupleAPIErrors(req.Post(e)) - if err != nil { - return nil, err - } - return r.Result().(*LKECluster), nil + return response, nil } // DeleteLKEClusterServiceToken deletes and regenerate the service account token for a Cluster. func (c *Client) DeleteLKEClusterServiceToken(ctx context.Context, clusterID int) error { - e := fmt.Sprintf("lke/clusters/%d/servicetoken", clusterID) - _, err := coupleAPIErrors(c.R(ctx).Delete(e)) + e := formatAPIPath("lke/clusters/%d/servicetoken", clusterID) + err := doDELETERequest(ctx, c, e) return err } diff --git a/lke_node_pools.go b/lke_node_pools.go index b7e5bc0bb..cde52b44f 100644 --- a/lke_node_pools.go +++ b/lke_node_pools.go @@ -2,11 +2,6 @@ package linodego import ( "context" - "encoding/json" - "fmt" - "net/url" - - "github.com/go-resty/resty/v2" ) // LKELinodeStatus constants start with LKELinode and include @@ -86,93 +81,59 @@ func (l LKENodePool) GetUpdateOptions() (o LKENodePoolUpdateOptions) { return } -// LKENodePoolsPagedResponse represents a paginated LKENodePool API response -type LKENodePoolsPagedResponse struct { - *PageOptions - Data []LKENodePool `json:"data"` -} - -// endpoint gets the endpoint URL for InstanceConfigs of a given Instance -func (LKENodePoolsPagedResponse) endpoint(ids ...any) string { - id := ids[0].(int) - return fmt.Sprintf("lke/clusters/%d/pools", id) -} - -func (resp *LKENodePoolsPagedResponse) castResult(r *resty.Request, e string) (int, int, error) { - res, err := coupleAPIErrors(r.SetResult(LKENodePoolsPagedResponse{}).Get(e)) - if err != nil { - return 0, 0, err - } - castedRes := res.Result().(*LKENodePoolsPagedResponse) - resp.Data = append(resp.Data, castedRes.Data...) - return castedRes.Pages, castedRes.Results, nil -} - // ListLKENodePools lists LKENodePools func (c *Client) ListLKENodePools(ctx context.Context, clusterID int, opts *ListOptions) ([]LKENodePool, error) { - response := LKENodePoolsPagedResponse{} - err := c.listHelper(ctx, &response, opts, clusterID) + response, err := getPaginatedResults[LKENodePool](ctx, c, formatAPIPath("lke/clusters/%d/pools", clusterID), opts) if err != nil { return nil, err } - return response.Data, nil + return response, nil } // GetLKENodePool gets the LKENodePool with the provided ID func (c *Client) GetLKENodePool(ctx context.Context, clusterID, poolID int) (*LKENodePool, error) { - e := fmt.Sprintf("lke/clusters/%d/pools/%d", clusterID, poolID) - req := c.R(ctx).SetResult(&LKENodePool{}) - r, err := coupleAPIErrors(req.Get(e)) + e := formatAPIPath("lke/clusters/%d/pools/%d", clusterID, poolID) + response, err := doGETRequest[LKENodePool](ctx, c, e) if err != nil { return nil, err } - return r.Result().(*LKENodePool), nil + + return response, nil } // CreateLKENodePool creates a LKENodePool func (c *Client) CreateLKENodePool(ctx context.Context, clusterID int, opts LKENodePoolCreateOptions) (*LKENodePool, error) { - body, err := json.Marshal(opts) + e := formatAPIPath("lke/clusters/%d/pools", clusterID) + response, err := doPOSTRequest[LKENodePool](ctx, c, e, opts) if err != nil { return nil, err } - e := fmt.Sprintf("lke/clusters/%d/pools", clusterID) - req := c.R(ctx).SetResult(&LKENodePool{}).SetBody(string(body)) - r, err := coupleAPIErrors(req.Post(e)) - if err != nil { - return nil, err - } - return r.Result().(*LKENodePool), nil + return response, nil } // UpdateLKENodePool updates the LKENodePool with the specified id func (c *Client) UpdateLKENodePool(ctx context.Context, clusterID, poolID int, opts LKENodePoolUpdateOptions) (*LKENodePool, error) { - body, err := json.Marshal(opts) + e := formatAPIPath("lke/clusters/%d/pools/%d", clusterID, poolID) + response, err := doPUTRequest[LKENodePool](ctx, c, e, opts) if err != nil { return nil, err } - e := fmt.Sprintf("lke/clusters/%d/pools/%d", clusterID, poolID) - req := c.R(ctx).SetResult(&LKENodePool{}).SetBody(string(body)) - r, err := coupleAPIErrors(req.Put(e)) - if err != nil { - return nil, err - } - return r.Result().(*LKENodePool), nil + return response, nil } // DeleteLKENodePool deletes the LKENodePool with the specified id func (c *Client) DeleteLKENodePool(ctx context.Context, clusterID, poolID int) error { - e := fmt.Sprintf("lke/clusters/%d/pools/%d", clusterID, poolID) - _, err := coupleAPIErrors(c.R(ctx).Delete(e)) + e := formatAPIPath("lke/clusters/%d/pools/%d", clusterID, poolID) + err := doDELETERequest(ctx, c, e) return err } // DeleteLKENodePoolNode deletes a given node from a node pool func (c *Client) DeleteLKENodePoolNode(ctx context.Context, clusterID int, nodeID string) error { - nodeID = url.PathEscape(nodeID) - e := fmt.Sprintf("lke/clusters/%d/nodes/%s", clusterID, nodeID) - _, err := coupleAPIErrors(c.R(ctx).Delete(e)) + e := formatAPIPath("lke/clusters/%d/nodes/%s", clusterID, nodeID) + err := doDELETERequest(ctx, c, e) return err } diff --git a/longview.go b/longview.go index 8eeb9f3a8..ec76fc8d3 100644 --- a/longview.go +++ b/longview.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" ) @@ -51,110 +49,76 @@ type LongviewPlanUpdateOptions struct { LongviewSubscription string `json:"longview_subscription"` } -// LongviewClientsPagedResponse represents a paginated LongviewClient API response -type LongviewClientsPagedResponse struct { - *PageOptions - Data []LongviewClient `json:"data"` -} - -// endpoint gets the endpoint URL for LongviewClient -func (LongviewClientsPagedResponse) endpoint(_ ...any) string { - return "longview/clients" -} - -func (resp *LongviewClientsPagedResponse) castResult(r *resty.Request, e string) (int, int, error) { - res, err := coupleAPIErrors(r.SetResult(LongviewClientsPagedResponse{}).Get(e)) - if err != nil { - return 0, 0, err - } - castedRes := res.Result().(*LongviewClientsPagedResponse) - resp.Data = append(resp.Data, castedRes.Data...) - return castedRes.Pages, castedRes.Results, nil -} - // ListLongviewClients lists LongviewClients func (c *Client) ListLongviewClients(ctx context.Context, opts *ListOptions) ([]LongviewClient, error) { - response := LongviewClientsPagedResponse{} - err := c.listHelper(ctx, &response, opts) + response, err := getPaginatedResults[LongviewClient](ctx, c, "longview/clients", opts) if err != nil { return nil, err } - return response.Data, nil + + return response, nil } // GetLongviewClient gets the template with the provided ID func (c *Client) GetLongviewClient(ctx context.Context, clientID int) (*LongviewClient, error) { - e := fmt.Sprintf("longview/clients/%d", clientID) - r, err := c.R(ctx).SetResult(&LongviewClient{}).Get(e) + e := formatAPIPath("longview/clients/%d", clientID) + response, err := doGETRequest[LongviewClient](ctx, c, e) if err != nil { return nil, err } - return r.Result().(*LongviewClient), nil + + return response, nil } // CreateLongviewClient creates a Longview Client func (c *Client) CreateLongviewClient(ctx context.Context, opts LongviewClientCreateOptions) (*LongviewClient, error) { - body, err := json.Marshal(opts) - if err != nil { - return nil, err - } - e := "longview/clients" - req := c.R(ctx).SetResult(&LongviewClient{}).SetBody(string(body)) - r, err := coupleAPIErrors(req.Post(e)) + response, err := doPOSTRequest[LongviewClient](ctx, c, e, opts) if err != nil { return nil, err } - return r.Result().(*LongviewClient), nil + + return response, nil } // DeleteLongviewClient deletes a Longview Client func (c *Client) DeleteLongviewClient(ctx context.Context, clientID int) error { - e := fmt.Sprintf("longview/clients/%d", clientID) - _, err := coupleAPIErrors(c.R(ctx).Delete(e)) + e := formatAPIPath("longview/clients/%d", clientID) + err := doDELETERequest(ctx, c, e) return err } // UpdateLongviewClient updates a Longview Client func (c *Client) UpdateLongviewClient(ctx context.Context, clientID int, opts LongviewClientUpdateOptions) (*LongviewClient, error) { - body, err := json.Marshal(opts) + e := formatAPIPath("longview/clients/%d", clientID) + response, err := doPUTRequest[LongviewClient](ctx, c, e, opts) if err != nil { return nil, err } - e := fmt.Sprintf("longview/clients/%d", clientID) - req := c.R(ctx).SetResult(&LongviewClient{}).SetBody(string(body)) - r, err := coupleAPIErrors(req.Put(e)) - if err != nil { - return nil, err - } - return r.Result().(*LongviewClient), nil + return response, nil } // GetLongviewPlan gets the template with the provided ID func (c *Client) GetLongviewPlan(ctx context.Context) (*LongviewPlan, error) { e := "longview/plan" - r, err := c.R(ctx).SetResult(&LongviewPlan{}).Get(e) + response, err := doGETRequest[LongviewPlan](ctx, c, e) if err != nil { return nil, err } - return r.Result().(*LongviewPlan), nil + + return response, nil } // UpdateLongviewPlan updates a Longview Plan func (c *Client) UpdateLongviewPlan(ctx context.Context, opts LongviewPlanUpdateOptions) (*LongviewPlan, error) { - body, err := json.Marshal(opts) - if err != nil { - return nil, err - } - e := "longview/plan" - req := c.R(ctx).SetResult(&LongviewPlan{}).SetBody(string(body)) - r, err := coupleAPIErrors(req.Put(e)) + response, err := doPUTRequest[LongviewPlan](ctx, c, e, opts) if err != nil { return nil, err } - return r.Result().(*LongviewPlan), nil + + return response, nil } // UnmarshalJSON implements the json.Unmarshaler interface diff --git a/longview_subscriptions.go b/longview_subscriptions.go index efb3ee126..586785bee 100644 --- a/longview_subscriptions.go +++ b/longview_subscriptions.go @@ -2,10 +2,6 @@ package linodego import ( "context" - "fmt" - "net/url" - - "github.com/go-resty/resty/v2" ) // LongviewSubscription represents a LongviewSubscription object @@ -18,45 +14,23 @@ type LongviewSubscription struct { // Updated *time.Time `json:"-"` } -// LongviewSubscriptionsPagedResponse represents a paginated LongviewSubscription API response -type LongviewSubscriptionsPagedResponse struct { - *PageOptions - Data []LongviewSubscription `json:"data"` -} - -// endpoint gets the endpoint URL for LongviewSubscription -func (LongviewSubscriptionsPagedResponse) endpoint(_ ...any) string { - return "longview/subscriptions" -} - -func (resp *LongviewSubscriptionsPagedResponse) castResult(r *resty.Request, e string) (int, int, error) { - res, err := coupleAPIErrors(r.SetResult(LongviewSubscriptionsPagedResponse{}).Get(e)) - if err != nil { - return 0, 0, err - } - castedRes := res.Result().(*LongviewSubscriptionsPagedResponse) - resp.Data = append(resp.Data, castedRes.Data...) - return castedRes.Pages, castedRes.Results, nil -} - // ListLongviewSubscriptions lists LongviewSubscriptions func (c *Client) ListLongviewSubscriptions(ctx context.Context, opts *ListOptions) ([]LongviewSubscription, error) { - response := LongviewSubscriptionsPagedResponse{} - err := c.listHelper(ctx, &response, opts) + response, err := getPaginatedResults[LongviewSubscription](ctx, c, "longview/subscriptions", opts) if err != nil { return nil, err } - return response.Data, nil + + return response, nil } // GetLongviewSubscription gets the template with the provided ID func (c *Client) GetLongviewSubscription(ctx context.Context, templateID string) (*LongviewSubscription, error) { - templateID = url.PathEscape(templateID) - e := fmt.Sprintf("longview/subscriptions/%s", templateID) - req := c.R(ctx).SetResult(&LongviewSubscription{}) - r, err := coupleAPIErrors(req.Get(e)) + e := formatAPIPath("longview/subscriptions/%s", templateID) + response, err := doGETRequest[LongviewSubscription](ctx, c, e) if err != nil { return nil, err } - return r.Result().(*LongviewSubscription), nil + + return response, nil } diff --git a/mysql.go b/mysql.go index 575d0b27b..f69f32f25 100644 --- a/mysql.go +++ b/mysql.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" ) @@ -112,25 +110,6 @@ func (d *MySQLDatabaseBackup) UnmarshalJSON(b []byte) error { return nil } -type MySQLDatabasesPagedResponse struct { - *PageOptions - Data []MySQLDatabase `json:"data"` -} - -func (MySQLDatabasesPagedResponse) endpoint(_ ...any) string { - return "databases/mysql/instances" -} - -func (resp *MySQLDatabasesPagedResponse) castResult(r *resty.Request, e string) (int, int, error) { - res, err := coupleAPIErrors(r.SetResult(MySQLDatabasesPagedResponse{}).Get(e)) - if err != nil { - return 0, 0, err - } - castedRes := res.Result().(*MySQLDatabasesPagedResponse) - resp.Data = append(resp.Data, castedRes.Data...) - return castedRes.Pages, castedRes.Results, nil -} - // MySQLDatabaseCredential is the Root Credentials to access the Linode Managed Database type MySQLDatabaseCredential struct { Username string `json:"username"` @@ -144,165 +123,121 @@ type MySQLDatabaseSSL struct { // ListMySQLDatabases lists all MySQL Databases associated with the account func (c *Client) ListMySQLDatabases(ctx context.Context, opts *ListOptions) ([]MySQLDatabase, error) { - response := MySQLDatabasesPagedResponse{} - - err := c.listHelper(ctx, &response, opts) + response, err := getPaginatedResults[MySQLDatabase](ctx, c, "databases/mysql/instances", opts) if err != nil { return nil, err } - return response.Data, nil -} - -type MySQLDatabaseBackupsPagedResponse struct { - *PageOptions - Data []MySQLDatabaseBackup `json:"data"` -} - -func (MySQLDatabaseBackupsPagedResponse) endpoint(ids ...any) string { - id := ids[0].(int) - return fmt.Sprintf("databases/mysql/instances/%d/backups", id) -} - -func (resp *MySQLDatabaseBackupsPagedResponse) castResult(r *resty.Request, e string) (int, int, error) { - res, err := coupleAPIErrors(r.SetResult(MySQLDatabaseBackupsPagedResponse{}).Get(e)) - if err != nil { - return 0, 0, err - } - castedRes := res.Result().(*MySQLDatabaseBackupsPagedResponse) - resp.Data = append(resp.Data, castedRes.Data...) - return castedRes.Pages, castedRes.Results, nil + return response, nil } // ListMySQLDatabaseBackups lists all MySQL Database Backups associated with the given MySQL Database func (c *Client) ListMySQLDatabaseBackups(ctx context.Context, databaseID int, opts *ListOptions) ([]MySQLDatabaseBackup, error) { - response := MySQLDatabaseBackupsPagedResponse{} - - err := c.listHelper(ctx, &response, opts, databaseID) + response, err := getPaginatedResults[MySQLDatabaseBackup](ctx, c, formatAPIPath("databases/mysql/instances/%d/backups", databaseID), opts) if err != nil { return nil, err } - return response.Data, nil + return response, nil } // GetMySQLDatabase returns a single MySQL Database matching the id func (c *Client) GetMySQLDatabase(ctx context.Context, databaseID int) (*MySQLDatabase, error) { - e := fmt.Sprintf("databases/mysql/instances/%d", databaseID) - req := c.R(ctx).SetResult(&MySQLDatabase{}) - r, err := coupleAPIErrors(req.Get(e)) + e := formatAPIPath("databases/mysql/instances/%d", databaseID) + response, err := doGETRequest[MySQLDatabase](ctx, c, e) if err != nil { return nil, err } - return r.Result().(*MySQLDatabase), nil + return response, nil } // CreateMySQLDatabase creates a new MySQL Database using the createOpts as configuration, returns the new MySQL Database func (c *Client) CreateMySQLDatabase(ctx context.Context, opts MySQLCreateOptions) (*MySQLDatabase, error) { - body, err := json.Marshal(opts) - if err != nil { - return nil, err - } - e := "databases/mysql/instances" - req := c.R(ctx).SetResult(&MySQLDatabase{}).SetBody(string(body)) - r, err := coupleAPIErrors(req.Post(e)) + response, err := doPOSTRequest[MySQLDatabase](ctx, c, e, opts) if err != nil { return nil, err } - return r.Result().(*MySQLDatabase), nil + + return response, nil } // DeleteMySQLDatabase deletes an existing MySQL Database with the given id func (c *Client) DeleteMySQLDatabase(ctx context.Context, databaseID int) error { - e := fmt.Sprintf("databases/mysql/instances/%d", databaseID) - _, err := coupleAPIErrors(c.R(ctx).Delete(e)) + e := formatAPIPath("databases/mysql/instances/%d", databaseID) + err := doDELETERequest(ctx, c, e) return err } // UpdateMySQLDatabase updates the given MySQL Database with the provided opts, returns the MySQLDatabase with the new settings func (c *Client) UpdateMySQLDatabase(ctx context.Context, databaseID int, opts MySQLUpdateOptions) (*MySQLDatabase, error) { - body, err := json.Marshal(opts) + e := formatAPIPath("databases/mysql/instances/%d", databaseID) + response, err := doPUTRequest[MySQLDatabase](ctx, c, e, opts) if err != nil { return nil, err } - e := fmt.Sprintf("databases/mysql/instances/%d", databaseID) - req := c.R(ctx).SetResult(&MySQLDatabase{}).SetBody(string(body)) - r, err := coupleAPIErrors(req.Put(e)) - if err != nil { - return nil, err - } - - return r.Result().(*MySQLDatabase), nil + return response, nil } // GetMySQLDatabaseSSL returns the SSL Certificate for the given MySQL Database func (c *Client) GetMySQLDatabaseSSL(ctx context.Context, databaseID int) (*MySQLDatabaseSSL, error) { - e := fmt.Sprintf("databases/mysql/instances/%d/ssl", databaseID) - req := c.R(ctx).SetResult(&MySQLDatabaseSSL{}) - r, err := coupleAPIErrors(req.Get(e)) + e := formatAPIPath("databases/mysql/instances/%d/ssl", databaseID) + response, err := doGETRequest[MySQLDatabaseSSL](ctx, c, e) if err != nil { return nil, err } - return r.Result().(*MySQLDatabaseSSL), nil + return response, nil } // GetMySQLDatabaseCredentials returns the Root Credentials for the given MySQL Database func (c *Client) GetMySQLDatabaseCredentials(ctx context.Context, databaseID int) (*MySQLDatabaseCredential, error) { - e := fmt.Sprintf("databases/mysql/instances/%d/credentials", databaseID) - req := c.R(ctx).SetResult(&MySQLDatabaseCredential{}) - r, err := coupleAPIErrors(req.Get(e)) + e := formatAPIPath("databases/mysql/instances/%d/credentials", databaseID) + response, err := doGETRequest[MySQLDatabaseCredential](ctx, c, e) if err != nil { return nil, err } - return r.Result().(*MySQLDatabaseCredential), nil + return response, nil } // ResetMySQLDatabaseCredentials returns the Root Credentials for the given MySQL Database (may take a few seconds to work) func (c *Client) ResetMySQLDatabaseCredentials(ctx context.Context, databaseID int) error { - e := fmt.Sprintf("databases/mysql/instances/%d/credentials/reset", databaseID) - _, err := coupleAPIErrors(c.R(ctx).Post(e)) + e := formatAPIPath("databases/mysql/instances/%d/credentials/reset", databaseID) + _, err := doPOSTRequest[MySQLDatabaseCredential, any](ctx, c, e) return err } // GetMySQLDatabaseBackup returns a specific MySQL Database Backup with the given ids func (c *Client) GetMySQLDatabaseBackup(ctx context.Context, databaseID int, backupID int) (*MySQLDatabaseBackup, error) { - e := fmt.Sprintf("databases/mysql/instances/%d/backups/%d", databaseID, backupID) - req := c.R(ctx).SetResult(&MySQLDatabaseBackup{}) - r, err := coupleAPIErrors(req.Get(e)) + e := formatAPIPath("databases/mysql/instances/%d/backups/%d", databaseID, backupID) + response, err := doGETRequest[MySQLDatabaseBackup](ctx, c, e) if err != nil { return nil, err } - return r.Result().(*MySQLDatabaseBackup), nil + return response, nil } // RestoreMySQLDatabaseBackup returns the given MySQL Database with the given Backup func (c *Client) RestoreMySQLDatabaseBackup(ctx context.Context, databaseID int, backupID int) error { - e := fmt.Sprintf("databases/mysql/instances/%d/backups/%d/restore", databaseID, backupID) - _, err := coupleAPIErrors(c.R(ctx).Post(e)) + e := formatAPIPath("databases/mysql/instances/%d/backups/%d/restore", databaseID, backupID) + _, err := doPOSTRequest[MySQLDatabaseBackup, any](ctx, c, e) return err } // CreateMySQLDatabaseBackup creates a snapshot for the given MySQL database func (c *Client) CreateMySQLDatabaseBackup(ctx context.Context, databaseID int, opts MySQLBackupCreateOptions) error { - body, err := json.Marshal(opts) - if err != nil { - return err - } - - e := fmt.Sprintf("databases/mysql/instances/%d/backups", databaseID) - _, err = coupleAPIErrors(c.R(ctx).SetBody(string(body)).Post(e)) + e := formatAPIPath("databases/mysql/instances/%d/backups", databaseID) + _, err := doPOSTRequest[MySQLDatabaseBackup](ctx, c, e, opts) return err } // PatchMySQLDatabase applies security patches and updates to the underlying operating system of the Managed MySQL Database func (c *Client) PatchMySQLDatabase(ctx context.Context, databaseID int) error { - e := fmt.Sprintf("databases/mysql/instances/%d/patch", databaseID) - _, err := coupleAPIErrors(c.R(ctx).Post(e)) + e := formatAPIPath("databases/mysql/instances/%d/patch", databaseID) + _, err := doPOSTRequest[MySQLDatabase, any](ctx, c, e) return err } diff --git a/paged_response_structs.go b/paged_response_structs.go index a8a18c1d6..73b3c6b86 100644 --- a/paged_response_structs.go +++ b/paged_response_structs.go @@ -57,6 +57,22 @@ type InvoiceItemsPagedResponse legacyPagedResponse[InvoiceItem] // Deprecated: InvoicesPagedResponse exists for historical compatibility and should not be used. type InvoicesPagedResponse legacyPagedResponse[Invoice] +// Deprecated: LKEClusterPoolsPagedResponse exists for historical compatibility and should not be used. +// LKEClusterPoolsPagedResponse represents a paginated LKEClusterPool API response. +type LKEClusterPoolsPagedResponse LKENodePoolsPagedResponse + +// Deprecated: LKEVersionsPagedResponse exists for historical compatibility and should not be used. +type LKEVersionsPagedResponse legacyPagedResponse[LKEVersion] + +// Deprecated: LKEClusterAPIEndpointsPagedResponse exists for historical compatibility and should not be used. +type LKEClusterAPIEndpointsPagedResponse legacyPagedResponse[LKEClusterAPIEndpoint] + +// Deprecated: LKEClustersPagedResponse exists for historical compatibility and should not be used. +type LKEClustersPagedResponse legacyPagedResponse[LKECluster] + +// Deprecated: LKENodePoolsPagedResponse exists for historical compatibility and should not be used. +type LKENodePoolsPagedResponse legacyPagedResponse[LKENodePool] + // Deprecated: IPAddressesPagedResponse exists for historical compatibility and should not be used. type IPAddressesPagedResponse legacyPagedResponse[InstanceIP] @@ -72,6 +88,18 @@ type LinodeKernelsPagedResponse legacyPagedResponse[LinodeKernel] // Deprecated: LoginsPagedResponse exists for historical compatibility and should not be used. type LoginsPagedResponse legacyPagedResponse[Login] +// Deprecated: LongviewClientsPagedResponse exists for historical compatibility and should not be used. +type LongviewClientsPagedResponse legacyPagedResponse[LongviewClient] + +// Deprecated: LongviewSubscriptionsPagedResponse exists for historical compatibility and should not be used. +type LongviewSubscriptionsPagedResponse legacyPagedResponse[LongviewSubscription] + +// Deprecated: MySQLDatabasesPagedResponse exists for historical compatibility and should not be used. +type MySQLDatabasesPagedResponse legacyPagedResponse[MySQLDatabase] + +// Deprecated: MySQLDatabaseBackupsPagedResponse exists for historical compatibility and should not be used. +type MySQLDatabaseBackupsPagedResponse legacyPagedResponse[MySQLDatabaseBackup] + // Deprecated: NodeBalancersPagedResponse exists for historical compatibility and should not be used. type NodeBalancersPagedResponse legacyPagedResponse[NodeBalancer] diff --git a/test/integration/fixtures/TestDatabase_MySQL_Suite.yaml b/test/integration/fixtures/TestDatabase_MySQL_Suite.yaml index 040f1c2b0..d200b7990 100644 --- a/test/integration/fixtures/TestDatabase_MySQL_Suite.yaml +++ b/test/integration/fixtures/TestDatabase_MySQL_Suite.yaml @@ -183,6 +183,25 @@ interactions: 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label": + "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50, + 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51, + 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32, + 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central", "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block @@ -251,7 +270,7 @@ interactions: "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 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: - - Mon, 24 Jun 2024 17:32:29 GMT + - Wed, 03 Jul 2024 13:05:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -298,7 +317,7 @@ interactions: code: 200 duration: "" - request: - body: '{"label":"go-mysql-test-def","region":"ap-west","type":"g6-nanode-1","engine":"mysql/8.0.30","allow_list":["203.0.113.1","192.0.1.0/24"],"replication_type":"semi_synch","cluster_size":3}' + body: '{"label":"go-mysql-test-defi8q3a5p4b65g","region":"ap-west","type":"g6-nanode-1","engine":"mysql/8.0.30","allow_list":["203.0.113.1","192.0.1.0/24"],"replication_type":"semi_synch","cluster_size":3}' form: {} headers: Accept: @@ -310,8 +329,8 @@ interactions: url: https://api.linode.com/v4beta/databases/mysql/instances method: POST response: - body: '{"id": 133362, "label": "go-mysql-test-def", "type": "g6-nanode-1", "engine": - "mysql", "version": "8.0.30", "region": "ap-west", "status": "provisioning", + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g", "type": "g6-nanode-1", + "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "provisioning", "port": 3306, "encrypted": false, "allow_list": ["203.0.113.1", "192.0.1.0/24"], "cluster_size": 3, "hosts": {"primary": null, "secondary": null}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": @@ -334,13 +353,13 @@ interactions: Connection: - keep-alive Content-Length: - - "611" + - "623" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:32:29 GMT + - Wed, 03 Jul 2024 13:05:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -374,16 +393,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T17:32:28"},"entity.id":133362,"entity.type":"database"}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -400,13 +419,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:32:44 GMT + - Wed, 03 Jul 2024 13:05:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -441,16 +460,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -467,13 +486,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:33:00 GMT + - Wed, 03 Jul 2024 13:06:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -508,16 +527,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -534,13 +553,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:33:14 GMT + - Wed, 03 Jul 2024 13:06:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -575,16 +594,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -601,13 +620,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:33:29 GMT + - Wed, 03 Jul 2024 13:06:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -642,16 +661,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -668,13 +687,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:33:44 GMT + - Wed, 03 Jul 2024 13:06:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -709,16 +728,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -735,13 +754,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:33:59 GMT + - Wed, 03 Jul 2024 13:07:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -776,16 +795,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -802,13 +821,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:34:14 GMT + - Wed, 03 Jul 2024 13:07:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -843,16 +862,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -869,13 +888,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:34:29 GMT + - Wed, 03 Jul 2024 13:07:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -910,16 +929,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -936,13 +955,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:34:44 GMT + - Wed, 03 Jul 2024 13:07:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -977,16 +996,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1003,13 +1022,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:34:59 GMT + - Wed, 03 Jul 2024 13:08:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1044,16 +1063,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1070,13 +1089,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:35:14 GMT + - Wed, 03 Jul 2024 13:08:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1111,16 +1130,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1137,13 +1156,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:35:29 GMT + - Wed, 03 Jul 2024 13:08:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1178,16 +1197,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1204,13 +1223,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:35:44 GMT + - Wed, 03 Jul 2024 13:08:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1245,16 +1264,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1271,13 +1290,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:35:59 GMT + - Wed, 03 Jul 2024 13:09:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1312,16 +1331,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1338,13 +1357,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:36:14 GMT + - Wed, 03 Jul 2024 13:09:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1379,16 +1398,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1405,13 +1424,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:36:29 GMT + - Wed, 03 Jul 2024 13:09:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1446,16 +1465,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1472,13 +1491,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:36:44 GMT + - Wed, 03 Jul 2024 13:09:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1513,16 +1532,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1539,13 +1558,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:36:59 GMT + - Wed, 03 Jul 2024 13:10:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1580,16 +1599,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1606,13 +1625,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:37:14 GMT + - Wed, 03 Jul 2024 13:10:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1647,16 +1666,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1673,13 +1692,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:37:29 GMT + - Wed, 03 Jul 2024 13:10:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1714,16 +1733,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1740,13 +1759,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:37:44 GMT + - Wed, 03 Jul 2024 13:10:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1781,16 +1800,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1807,13 +1826,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:37:59 GMT + - Wed, 03 Jul 2024 13:11:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1848,16 +1867,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1874,13 +1893,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:38:14 GMT + - Wed, 03 Jul 2024 13:11:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1915,16 +1934,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1941,13 +1960,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:38:29 GMT + - Wed, 03 Jul 2024 13:11:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1982,16 +2001,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2008,13 +2027,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:38:44 GMT + - Wed, 03 Jul 2024 13:11:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2049,16 +2068,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2075,13 +2094,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:38:59 GMT + - Wed, 03 Jul 2024 13:12:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2116,16 +2135,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2142,13 +2161,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:39:14 GMT + - Wed, 03 Jul 2024 13:12:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2183,16 +2202,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2209,13 +2228,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:39:29 GMT + - Wed, 03 Jul 2024 13:12:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2250,16 +2269,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2276,13 +2295,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:39:44 GMT + - Wed, 03 Jul 2024 13:12:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2317,16 +2336,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2343,13 +2362,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:39:59 GMT + - Wed, 03 Jul 2024 13:13:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2384,16 +2403,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2410,13 +2429,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:40:14 GMT + - Wed, 03 Jul 2024 13:13:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2451,16 +2470,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2477,13 +2496,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:40:29 GMT + - Wed, 03 Jul 2024 13:13:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2518,16 +2537,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2544,13 +2563,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:40:44 GMT + - Wed, 03 Jul 2024 13:13:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2585,16 +2604,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2611,13 +2630,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:40:59 GMT + - Wed, 03 Jul 2024 13:14:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2652,16 +2671,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2678,13 +2697,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:41:14 GMT + - Wed, 03 Jul 2024 13:14:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2719,16 +2738,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2745,13 +2764,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:41:29 GMT + - Wed, 03 Jul 2024 13:14:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2786,16 +2805,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2812,13 +2831,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:41:44 GMT + - Wed, 03 Jul 2024 13:14:57 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2853,16 +2872,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2879,13 +2898,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:41:59 GMT + - Wed, 03 Jul 2024 13:15:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2920,16 +2939,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2946,13 +2965,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:42:14 GMT + - Wed, 03 Jul 2024 13:15:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2987,16 +3006,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3013,13 +3032,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:42:29 GMT + - Wed, 03 Jul 2024 13:15:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3054,16 +3073,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3080,13 +3099,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:42:44 GMT + - Wed, 03 Jul 2024 13:15:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3121,16 +3140,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3147,13 +3166,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:42:59 GMT + - Wed, 03 Jul 2024 13:16:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3188,16 +3207,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3214,13 +3233,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:43:14 GMT + - Wed, 03 Jul 2024 13:16:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3255,16 +3274,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3281,13 +3300,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:43:29 GMT + - Wed, 03 Jul 2024 13:16:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3322,16 +3341,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3348,13 +3367,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:43:44 GMT + - Wed, 03 Jul 2024 13:16:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3389,16 +3408,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3415,13 +3434,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:43:59 GMT + - Wed, 03 Jul 2024 13:17:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3456,16 +3475,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3482,13 +3501,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:44:14 GMT + - Wed, 03 Jul 2024 13:17:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3523,16 +3542,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3549,13 +3568,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:44:29 GMT + - Wed, 03 Jul 2024 13:17:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3590,16 +3609,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3616,13 +3635,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:44:44 GMT + - Wed, 03 Jul 2024 13:17:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3657,16 +3676,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3683,13 +3702,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:44:59 GMT + - Wed, 03 Jul 2024 13:18:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3724,16 +3743,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3750,13 +3769,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:45:14 GMT + - Wed, 03 Jul 2024 13:18:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3791,16 +3810,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3817,13 +3836,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:45:29 GMT + - Wed, 03 Jul 2024 13:18:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3858,16 +3877,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3884,13 +3903,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:45:44 GMT + - Wed, 03 Jul 2024 13:18:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3925,16 +3944,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3951,13 +3970,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:45:59 GMT + - Wed, 03 Jul 2024 13:19:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3992,16 +4011,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4018,13 +4037,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:46:14 GMT + - Wed, 03 Jul 2024 13:19:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4059,16 +4078,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4085,13 +4104,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:46:29 GMT + - Wed, 03 Jul 2024 13:19:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4126,16 +4145,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4152,13 +4171,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:46:44 GMT + - Wed, 03 Jul 2024 13:19:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4193,16 +4212,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4219,13 +4238,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:46:59 GMT + - Wed, 03 Jul 2024 13:20:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4260,16 +4279,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4286,13 +4305,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:47:14 GMT + - Wed, 03 Jul 2024 13:20:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4327,16 +4346,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4353,13 +4372,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:47:29 GMT + - Wed, 03 Jul 2024 13:20:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4394,16 +4413,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4420,13 +4439,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:47:44 GMT + - Wed, 03 Jul 2024 13:20:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4461,16 +4480,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4487,13 +4506,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:47:59 GMT + - Wed, 03 Jul 2024 13:21:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4528,16 +4547,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4554,13 +4573,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:48:14 GMT + - Wed, 03 Jul 2024 13:21:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4595,16 +4614,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4621,13 +4640,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:48:29 GMT + - Wed, 03 Jul 2024 13:21:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4662,16 +4681,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4688,13 +4707,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:48:44 GMT + - Wed, 03 Jul 2024 13:21:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4729,16 +4748,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4755,13 +4774,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:48:59 GMT + - Wed, 03 Jul 2024 13:22:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4796,16 +4815,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4822,13 +4841,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:49:14 GMT + - Wed, 03 Jul 2024 13:22:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4863,16 +4882,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4889,13 +4908,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:49:29 GMT + - Wed, 03 Jul 2024 13:22:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4930,16 +4949,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4956,13 +4975,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:49:44 GMT + - Wed, 03 Jul 2024 13:22:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4997,16 +5016,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -5023,13 +5042,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:49:59 GMT + - Wed, 03 Jul 2024 13:23:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5064,16 +5083,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -5090,13 +5109,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:50:14 GMT + - Wed, 03 Jul 2024 13:23:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5131,16 +5150,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -5157,13 +5176,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:50:29 GMT + - Wed, 03 Jul 2024 13:23:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5198,16 +5217,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -5224,13 +5243,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:50:44 GMT + - Wed, 03 Jul 2024 13:23:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5265,16 +5284,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -5291,13 +5310,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:50:59 GMT + - Wed, 03 Jul 2024 13:24:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5332,16 +5351,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -5358,13 +5377,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:51:14 GMT + - Wed, 03 Jul 2024 13:24:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5399,16 +5418,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -5425,13 +5444,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:51:29 GMT + - Wed, 03 Jul 2024 13:24:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5466,16 +5485,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -5492,13 +5511,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:51:44 GMT + - Wed, 03 Jul 2024 13:24:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5533,16 +5552,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -5559,13 +5578,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:51:59 GMT + - Wed, 03 Jul 2024 13:25:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5600,16 +5619,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -5626,13 +5645,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:52:14 GMT + - Wed, 03 Jul 2024 13:25:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5667,16 +5686,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -5693,13 +5712,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:52:29 GMT + - Wed, 03 Jul 2024 13:25:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5734,16 +5753,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -5760,13 +5779,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:52:44 GMT + - Wed, 03 Jul 2024 13:25:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5801,16 +5820,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -5827,13 +5846,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:52:59 GMT + - Wed, 03 Jul 2024 13:26:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5868,16 +5887,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -5894,13 +5913,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:53:14 GMT + - Wed, 03 Jul 2024 13:26:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5935,16 +5954,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -5961,13 +5980,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:53:29 GMT + - Wed, 03 Jul 2024 13:26:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6002,16 +6021,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -6028,13 +6047,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:53:44 GMT + - Wed, 03 Jul 2024 13:26:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6069,16 +6088,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -6095,13 +6114,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:53:59 GMT + - Wed, 03 Jul 2024 13:27:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6136,16 +6155,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -6162,13 +6181,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:54:14 GMT + - Wed, 03 Jul 2024 13:27:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6203,16 +6222,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -6229,13 +6248,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:54:29 GMT + - Wed, 03 Jul 2024 13:27:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6270,16 +6289,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -6296,13 +6315,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:54:44 GMT + - Wed, 03 Jul 2024 13:27:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6337,16 +6356,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -6363,13 +6382,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:54:59 GMT + - Wed, 03 Jul 2024 13:28:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6404,16 +6423,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -6430,13 +6449,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:55:14 GMT + - Wed, 03 Jul 2024 13:28:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6471,16 +6490,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -6497,13 +6516,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:55:29 GMT + - Wed, 03 Jul 2024 13:28:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6538,16 +6557,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -6564,13 +6583,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:55:44 GMT + - Wed, 03 Jul 2024 13:28:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6605,16 +6624,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -6631,13 +6650,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:55:59 GMT + - Wed, 03 Jul 2024 13:29:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6672,16 +6691,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -6698,13 +6717,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:56:14 GMT + - Wed, 03 Jul 2024 13:29:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6739,16 +6758,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -6765,13 +6784,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:56:29 GMT + - Wed, 03 Jul 2024 13:29:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6806,16 +6825,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -6832,13 +6851,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:56:44 GMT + - Wed, 03 Jul 2024 13:29:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6873,16 +6892,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -6899,13 +6918,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:56:59 GMT + - Wed, 03 Jul 2024 13:30:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6940,16 +6959,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -6966,13 +6985,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:57:14 GMT + - Wed, 03 Jul 2024 13:30:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7007,16 +7026,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -7033,13 +7052,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:57:29 GMT + - Wed, 03 Jul 2024 13:30:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7074,16 +7093,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -7100,13 +7119,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:57:44 GMT + - Wed, 03 Jul 2024 13:30:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7141,16 +7160,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -7167,13 +7186,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:57:59 GMT + - Wed, 03 Jul 2024 13:31:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7208,16 +7227,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -7234,13 +7253,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:58:14 GMT + - Wed, 03 Jul 2024 13:31:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7275,16 +7294,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -7301,13 +7320,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:58:29 GMT + - Wed, 03 Jul 2024 13:31:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7342,16 +7361,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -7368,13 +7387,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:58:44 GMT + - Wed, 03 Jul 2024 13:31:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7409,16 +7428,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -7435,13 +7454,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:58:59 GMT + - Wed, 03 Jul 2024 13:32:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7476,16 +7495,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -7502,13 +7521,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:59:14 GMT + - Wed, 03 Jul 2024 13:32:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7543,16 +7562,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -7569,13 +7588,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:59:29 GMT + - Wed, 03 Jul 2024 13:32:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7610,16 +7629,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -7636,13 +7655,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:59:44 GMT + - Wed, 03 Jul 2024 13:32:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7677,16 +7696,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -7703,13 +7722,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:59:59 GMT + - Wed, 03 Jul 2024 13:33:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7744,16 +7763,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -7770,13 +7789,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:00:14 GMT + - Wed, 03 Jul 2024 13:33:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7811,16 +7830,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -7837,13 +7856,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:00:29 GMT + - Wed, 03 Jul 2024 13:33:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7878,16 +7897,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -7904,13 +7923,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:00:44 GMT + - Wed, 03 Jul 2024 13:33:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7945,16 +7964,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -7971,13 +7990,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:00:59 GMT + - Wed, 03 Jul 2024 13:34:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8012,16 +8031,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -8038,13 +8057,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:01:14 GMT + - Wed, 03 Jul 2024 13:34:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8079,16 +8098,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -8105,13 +8124,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:01:29 GMT + - Wed, 03 Jul 2024 13:34:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8146,16 +8165,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -8172,13 +8191,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:01:44 GMT + - Wed, 03 Jul 2024 13:34:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8213,16 +8232,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -8239,13 +8258,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:01:59 GMT + - Wed, 03 Jul 2024 13:35:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8280,16 +8299,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -8306,13 +8325,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:02:14 GMT + - Wed, 03 Jul 2024 13:35:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8347,16 +8366,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -8373,13 +8392,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:02:29 GMT + - Wed, 03 Jul 2024 13:35:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8414,16 +8433,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -8440,13 +8459,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:02:44 GMT + - Wed, 03 Jul 2024 13:35:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8481,16 +8500,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -8507,13 +8526,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:02:59 GMT + - Wed, 03 Jul 2024 13:36:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8548,16 +8567,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -8574,13 +8593,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:03:14 GMT + - Wed, 03 Jul 2024 13:36:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8615,16 +8634,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -8641,13 +8660,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:03:29 GMT + - Wed, 03 Jul 2024 13:36:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8682,16 +8701,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -8708,13 +8727,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:03:44 GMT + - Wed, 03 Jul 2024 13:36:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8749,16 +8768,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -8775,13 +8794,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:03:59 GMT + - Wed, 03 Jul 2024 13:37:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8816,16 +8835,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -8842,13 +8861,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:04:14 GMT + - Wed, 03 Jul 2024 13:37:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8883,16 +8902,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -8909,13 +8928,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:04:30 GMT + - Wed, 03 Jul 2024 13:37:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8950,16 +8969,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -8976,13 +8995,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:04:44 GMT + - Wed, 03 Jul 2024 13:37:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9017,16 +9036,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -9043,13 +9062,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:04:59 GMT + - Wed, 03 Jul 2024 13:38:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9084,16 +9103,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -9110,13 +9129,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:05:14 GMT + - Wed, 03 Jul 2024 13:38:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9151,16 +9170,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -9177,13 +9196,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:05:29 GMT + - Wed, 03 Jul 2024 13:38:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9218,16 +9237,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -9244,13 +9263,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:05:44 GMT + - Wed, 03 Jul 2024 13:38:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9285,16 +9304,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -9311,13 +9330,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:05:59 GMT + - Wed, 03 Jul 2024 13:39:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9352,16 +9371,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -9378,13 +9397,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:06:14 GMT + - Wed, 03 Jul 2024 13:39:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9419,16 +9438,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -9445,13 +9464,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:06:29 GMT + - Wed, 03 Jul 2024 13:39:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9486,16 +9505,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -9512,13 +9531,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:06:44 GMT + - Wed, 03 Jul 2024 13:39:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9553,16 +9572,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -9579,13 +9598,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:06:59 GMT + - Wed, 03 Jul 2024 13:40:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9620,16 +9639,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -9646,13 +9665,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:07:14 GMT + - Wed, 03 Jul 2024 13:40:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9687,16 +9706,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -9713,13 +9732,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:07:29 GMT + - Wed, 03 Jul 2024 13:40:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9754,16 +9773,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -9780,13 +9799,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:07:44 GMT + - Wed, 03 Jul 2024 13:40:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9821,16 +9840,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -9847,13 +9866,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:07:59 GMT + - Wed, 03 Jul 2024 13:41:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9888,16 +9907,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -9914,13 +9933,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:08:14 GMT + - Wed, 03 Jul 2024 13:41:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9955,16 +9974,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -9981,13 +10000,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:08:29 GMT + - Wed, 03 Jul 2024 13:41:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -10022,16 +10041,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -10048,13 +10067,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:08:44 GMT + - Wed, 03 Jul 2024 13:41:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -10089,16 +10108,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -10115,13 +10134,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:08:59 GMT + - Wed, 03 Jul 2024 13:42:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -10156,16 +10175,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -10182,13 +10201,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:09:14 GMT + - Wed, 03 Jul 2024 13:42:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -10223,16 +10242,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -10249,13 +10268,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:09:29 GMT + - Wed, 03 Jul 2024 13:42:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -10290,16 +10309,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -10316,13 +10335,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:09:44 GMT + - Wed, 03 Jul 2024 13:42:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -10357,16 +10376,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -10383,13 +10402,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:09:59 GMT + - Wed, 03 Jul 2024 13:43:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -10424,16 +10443,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -10450,13 +10469,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:10:14 GMT + - Wed, 03 Jul 2024 13:43:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -10491,16 +10510,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -10517,13 +10536,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:10:29 GMT + - Wed, 03 Jul 2024 13:43:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -10558,16 +10577,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -10584,13 +10603,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:10:44 GMT + - Wed, 03 Jul 2024 13:43:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -10625,16 +10644,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -10651,13 +10670,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:10:59 GMT + - Wed, 03 Jul 2024 13:44:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -10692,16 +10711,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -10718,13 +10737,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:11:14 GMT + - Wed, 03 Jul 2024 13:44:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -10759,16 +10778,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -10785,13 +10804,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:11:29 GMT + - Wed, 03 Jul 2024 13:44:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -10826,16 +10845,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -10852,13 +10871,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:11:44 GMT + - Wed, 03 Jul 2024 13:44:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -10893,16 +10912,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -10919,13 +10938,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:11:59 GMT + - Wed, 03 Jul 2024 13:45:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -10960,16 +10979,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -10986,13 +11005,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:12:14 GMT + - Wed, 03 Jul 2024 13:45:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -11027,16 +11046,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11053,13 +11072,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:12:29 GMT + - Wed, 03 Jul 2024 13:45:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -11094,16 +11113,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11120,13 +11139,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:12:44 GMT + - Wed, 03 Jul 2024 13:45:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -11161,16 +11180,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11187,13 +11206,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:12:59 GMT + - Wed, 03 Jul 2024 13:46:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -11228,16 +11247,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11254,13 +11273,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:13:14 GMT + - Wed, 03 Jul 2024 13:46:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -11295,16 +11314,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11321,13 +11340,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:13:29 GMT + - Wed, 03 Jul 2024 13:46:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -11362,16 +11381,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11388,13 +11407,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:13:44 GMT + - Wed, 03 Jul 2024 13:46:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -11429,16 +11448,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11455,13 +11474,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:13:59 GMT + - Wed, 03 Jul 2024 13:47:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -11496,16 +11515,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11522,13 +11541,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:14:14 GMT + - Wed, 03 Jul 2024 13:47:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -11563,16 +11582,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11589,13 +11608,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:14:29 GMT + - Wed, 03 Jul 2024 13:47:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -11630,16 +11649,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11656,13 +11675,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:14:44 GMT + - Wed, 03 Jul 2024 13:47:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -11697,16 +11716,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11723,13 +11742,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:14:59 GMT + - Wed, 03 Jul 2024 13:48:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -11764,16 +11783,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11790,13 +11809,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:15:14 GMT + - Wed, 03 Jul 2024 13:48:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -11831,16 +11850,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11857,13 +11876,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:15:29 GMT + - Wed, 03 Jul 2024 13:48:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -11898,16 +11917,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11924,13 +11943,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:15:44 GMT + - Wed, 03 Jul 2024 13:48:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -11965,16 +11984,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -11991,13 +12010,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:15:59 GMT + - Wed, 03 Jul 2024 13:49:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -12032,16 +12051,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12058,13 +12077,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:16:14 GMT + - Wed, 03 Jul 2024 13:49:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -12099,16 +12118,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12125,13 +12144,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:16:29 GMT + - Wed, 03 Jul 2024 13:49:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -12166,16 +12185,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12192,13 +12211,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:16:44 GMT + - Wed, 03 Jul 2024 13:49:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -12233,16 +12252,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12259,13 +12278,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:16:59 GMT + - Wed, 03 Jul 2024 13:50:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -12300,16 +12319,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12326,13 +12345,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:17:14 GMT + - Wed, 03 Jul 2024 13:50:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -12367,16 +12386,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12393,13 +12412,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:17:29 GMT + - Wed, 03 Jul 2024 13:50:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -12434,16 +12453,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12460,13 +12479,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:17:44 GMT + - Wed, 03 Jul 2024 13:50:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -12501,16 +12520,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12527,13 +12546,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:17:59 GMT + - Wed, 03 Jul 2024 13:51:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -12568,16 +12587,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12594,13 +12613,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:18:14 GMT + - Wed, 03 Jul 2024 13:51:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -12635,16 +12654,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12661,13 +12680,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:18:29 GMT + - Wed, 03 Jul 2024 13:51:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -12702,16 +12721,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755325328, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "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}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12728,13 +12747,13 @@ interactions: Connection: - keep-alive Content-Length: - - "457" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:18:44 GMT + - Wed, 03 Jul 2024 13:51:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -12769,16 +12788,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego 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}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 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}' + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": null, "time_remaining": null, "rate": null, + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12795,13 +12814,13 @@ interactions: Connection: - keep-alive Content-Length: - - "452" + - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:18:59 GMT + - Wed, 03 Jul 2024 13:52:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -12835,20 +12854,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-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 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}' + body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, + "duration": 2660, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "finished", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12865,13 +12881,13 @@ interactions: Connection: - keep-alive Content-Length: - - "838" + - "464" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:18:59 GMT + - Wed, 03 Jul 2024 13:52:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -12880,7 +12896,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -12905,19 +12921,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances?page=1 method: GET response: - 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"}, + body: '{"data": [{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "active", "port": 3306, "encrypted": false, "allow_list": ["203.0.113.1", + "192.0.1.0/24"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 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": + 15, "used_disk_size_gb": 2, "members": {"194.195.117.71": "failover", "192.46.209.77": + "failover", "194.195.118.252": "primary"}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "weekly", "duration": 3, "hour_of_day": - 2, "day_of_week": 7, "week_of_month": null}}' + 0, "day_of_week": 6, "week_of_month": null}}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -12934,13 +12951,13 @@ interactions: Connection: - keep-alive Content-Length: - - "789" + - "851" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:18:59 GMT + - Wed, 03 Jul 2024 13:52:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -12965,7 +12982,7 @@ interactions: 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: @@ -12974,18 +12991,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 - method: PUT + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g", "type": "g6-nanode-1", + "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "active", + "port": 3306, "encrypted": false, "allow_list": ["203.0.113.1", "192.0.1.0/24"], + "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + 15, "used_disk_size_gb": 2, "members": {"194.195.117.71": "failover", "192.46.209.77": + "failover", "194.195.118.252": "primary"}, "ssl_connection": false, "replication_type": + "semi_synch", "updates": {"frequency": "weekly", "duration": 3, "hour_of_day": + 0, "day_of_week": 6, "week_of_month": null}}' headers: Access-Control-Allow-Credentials: - "true" @@ -13002,21 +13020,22 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "802" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:19:02 GMT + - Wed, 03 Jul 2024 13:52:26 GMT Pragma: - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter + - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -13032,7 +13051,7 @@ interactions: code: 200 duration: "" - request: - body: "" + body: '{"label":"go-mysql-test-defi8q3a5p4b65g-updated","allow_list":["128.173.205.21","123.177.200.20"],"updates":{"day_of_week":3,"duration":1,"frequency":"monthly","hour_of_day":8,"week_of_month":3}}' form: {} headers: Accept: @@ -13041,17 +13060,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133362,"entity.type":"database"}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + method: PUT 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}' + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, + "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": + 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": + "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": + 8, "day_of_week": 3, "week_of_month": 3}}' headers: Access-Control-Allow-Credentials: - "true" @@ -13068,22 +13088,21 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:19:18 GMT + - Wed, 03 Jul 2024 13:52:30 GMT Pragma: - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -13109,15 +13128,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -13135,13 +13154,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:19:33 GMT + - Wed, 03 Jul 2024 13:52:45 GMT Pragma: - no-cache Strict-Transport-Security: @@ -13176,15 +13195,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -13202,13 +13221,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:19:48 GMT + - Wed, 03 Jul 2024 13:53:00 GMT Pragma: - no-cache Strict-Transport-Security: @@ -13243,15 +13262,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -13269,13 +13288,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:20:03 GMT + - Wed, 03 Jul 2024 13:53:15 GMT Pragma: - no-cache Strict-Transport-Security: @@ -13310,15 +13329,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -13336,13 +13355,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:20:18 GMT + - Wed, 03 Jul 2024 13:53:30 GMT Pragma: - no-cache Strict-Transport-Security: @@ -13377,15 +13396,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -13403,13 +13422,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:20:33 GMT + - Wed, 03 Jul 2024 13:53:45 GMT Pragma: - no-cache Strict-Transport-Security: @@ -13444,15 +13463,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -13470,13 +13489,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:20:48 GMT + - Wed, 03 Jul 2024 13:54:00 GMT Pragma: - no-cache Strict-Transport-Security: @@ -13511,15 +13530,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -13537,13 +13556,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:21:03 GMT + - Wed, 03 Jul 2024 13:54:15 GMT Pragma: - no-cache Strict-Transport-Security: @@ -13578,15 +13597,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -13604,13 +13623,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:21:18 GMT + - Wed, 03 Jul 2024 13:54:30 GMT Pragma: - no-cache Strict-Transport-Security: @@ -13645,15 +13664,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -13671,13 +13690,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:21:33 GMT + - Wed, 03 Jul 2024 13:54:45 GMT Pragma: - no-cache Strict-Transport-Security: @@ -13712,15 +13731,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -13738,13 +13757,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:21:48 GMT + - Wed, 03 Jul 2024 13:55:00 GMT Pragma: - no-cache Strict-Transport-Security: @@ -13779,15 +13798,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -13805,13 +13824,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:22:03 GMT + - Wed, 03 Jul 2024 13:55:15 GMT Pragma: - no-cache Strict-Transport-Security: @@ -13846,15 +13865,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -13872,13 +13891,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:22:18 GMT + - Wed, 03 Jul 2024 13:55:30 GMT Pragma: - no-cache Strict-Transport-Security: @@ -13913,15 +13932,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -13939,13 +13958,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:22:33 GMT + - Wed, 03 Jul 2024 13:55:45 GMT Pragma: - no-cache Strict-Transport-Security: @@ -13980,15 +13999,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -14006,13 +14025,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:22:48 GMT + - Wed, 03 Jul 2024 13:56:00 GMT Pragma: - no-cache Strict-Transport-Security: @@ -14047,15 +14066,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -14073,13 +14092,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:23:03 GMT + - Wed, 03 Jul 2024 13:56:15 GMT Pragma: - no-cache Strict-Transport-Security: @@ -14114,15 +14133,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -14140,13 +14159,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:23:18 GMT + - Wed, 03 Jul 2024 13:56:30 GMT Pragma: - no-cache Strict-Transport-Security: @@ -14181,15 +14200,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -14207,13 +14226,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:23:33 GMT + - Wed, 03 Jul 2024 13:56:45 GMT Pragma: - no-cache Strict-Transport-Security: @@ -14248,15 +14267,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -14274,13 +14293,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:23:48 GMT + - Wed, 03 Jul 2024 13:57:00 GMT Pragma: - no-cache Strict-Transport-Security: @@ -14315,15 +14334,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -14341,13 +14360,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:24:03 GMT + - Wed, 03 Jul 2024 13:57:15 GMT Pragma: - no-cache Strict-Transport-Security: @@ -14382,15 +14401,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -14408,13 +14427,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:24:18 GMT + - Wed, 03 Jul 2024 13:57:30 GMT Pragma: - no-cache Strict-Transport-Security: @@ -14449,15 +14468,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -14475,13 +14494,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:24:33 GMT + - Wed, 03 Jul 2024 13:57:45 GMT Pragma: - no-cache Strict-Transport-Security: @@ -14516,15 +14535,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -14542,13 +14561,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:24:48 GMT + - Wed, 03 Jul 2024 13:58:00 GMT Pragma: - no-cache Strict-Transport-Security: @@ -14583,15 +14602,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -14609,13 +14628,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:25:03 GMT + - Wed, 03 Jul 2024 13:58:15 GMT Pragma: - no-cache Strict-Transport-Security: @@ -14650,15 +14669,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -14676,13 +14695,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:25:18 GMT + - Wed, 03 Jul 2024 13:58:30 GMT Pragma: - no-cache Strict-Transport-Security: @@ -14717,15 +14736,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -14743,13 +14762,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:25:33 GMT + - Wed, 03 Jul 2024 13:58:45 GMT Pragma: - no-cache Strict-Transport-Security: @@ -14784,15 +14803,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -14810,13 +14829,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:25:48 GMT + - Wed, 03 Jul 2024 13:59:01 GMT Pragma: - no-cache Strict-Transport-Security: @@ -14851,15 +14870,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -14877,13 +14896,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:26:03 GMT + - Wed, 03 Jul 2024 13:59:15 GMT Pragma: - no-cache Strict-Transport-Security: @@ -14918,15 +14937,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -14944,13 +14963,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:26:18 GMT + - Wed, 03 Jul 2024 13:59:30 GMT Pragma: - no-cache Strict-Transport-Security: @@ -14985,15 +15004,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -15011,13 +15030,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:26:33 GMT + - Wed, 03 Jul 2024 13:59:45 GMT Pragma: - no-cache Strict-Transport-Security: @@ -15052,15 +15071,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -15078,13 +15097,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:26:48 GMT + - Wed, 03 Jul 2024 14:00:00 GMT Pragma: - no-cache Strict-Transport-Security: @@ -15119,15 +15138,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -15145,13 +15164,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:27:03 GMT + - Wed, 03 Jul 2024 14:00:15 GMT Pragma: - no-cache Strict-Transport-Security: @@ -15186,15 +15205,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -15212,13 +15231,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:27:18 GMT + - Wed, 03 Jul 2024 14:00:30 GMT Pragma: - no-cache Strict-Transport-Security: @@ -15253,15 +15272,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -15279,13 +15298,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:27:33 GMT + - Wed, 03 Jul 2024 14:00:45 GMT Pragma: - no-cache Strict-Transport-Security: @@ -15320,15 +15339,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -15346,13 +15365,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:27:48 GMT + - Wed, 03 Jul 2024 14:01:00 GMT Pragma: - no-cache Strict-Transport-Security: @@ -15387,15 +15406,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -15413,13 +15432,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:28:03 GMT + - Wed, 03 Jul 2024 14:01:15 GMT Pragma: - no-cache Strict-Transport-Security: @@ -15454,15 +15473,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -15480,13 +15499,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:28:18 GMT + - Wed, 03 Jul 2024 14:01:30 GMT Pragma: - no-cache Strict-Transport-Security: @@ -15521,15 +15540,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -15547,13 +15566,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:28:33 GMT + - Wed, 03 Jul 2024 14:01:45 GMT Pragma: - no-cache Strict-Transport-Security: @@ -15588,15 +15607,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -15614,13 +15633,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:28:48 GMT + - Wed, 03 Jul 2024 14:02:00 GMT Pragma: - no-cache Strict-Transport-Security: @@ -15655,15 +15674,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -15681,13 +15700,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:29:03 GMT + - Wed, 03 Jul 2024 14:02:15 GMT Pragma: - no-cache Strict-Transport-Security: @@ -15722,15 +15741,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -15748,13 +15767,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:29:18 GMT + - Wed, 03 Jul 2024 14:02:30 GMT Pragma: - no-cache Strict-Transport-Security: @@ -15789,15 +15808,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -15815,13 +15834,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:29:33 GMT + - Wed, 03 Jul 2024 14:02:45 GMT Pragma: - no-cache Strict-Transport-Security: @@ -15856,15 +15875,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -15882,13 +15901,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:29:48 GMT + - Wed, 03 Jul 2024 14:03:00 GMT Pragma: - no-cache Strict-Transport-Security: @@ -15923,15 +15942,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -15949,13 +15968,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:30:03 GMT + - Wed, 03 Jul 2024 14:03:15 GMT Pragma: - no-cache Strict-Transport-Security: @@ -15990,15 +16009,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -16016,13 +16035,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:30:18 GMT + - Wed, 03 Jul 2024 14:03:30 GMT Pragma: - no-cache Strict-Transport-Security: @@ -16057,15 +16076,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -16083,13 +16102,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:30:33 GMT + - Wed, 03 Jul 2024 14:03:45 GMT Pragma: - no-cache Strict-Transport-Security: @@ -16124,15 +16143,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -16150,13 +16169,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:30:48 GMT + - Wed, 03 Jul 2024 14:04:00 GMT Pragma: - no-cache Strict-Transport-Security: @@ -16191,15 +16210,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -16217,13 +16236,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:31:03 GMT + - Wed, 03 Jul 2024 14:04:15 GMT Pragma: - no-cache Strict-Transport-Security: @@ -16258,15 +16277,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -16284,13 +16303,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:31:18 GMT + - Wed, 03 Jul 2024 14:04:30 GMT Pragma: - no-cache Strict-Transport-Security: @@ -16325,15 +16344,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -16351,13 +16370,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:31:33 GMT + - Wed, 03 Jul 2024 14:04:45 GMT Pragma: - no-cache Strict-Transport-Security: @@ -16392,15 +16411,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -16418,13 +16437,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:31:48 GMT + - Wed, 03 Jul 2024 14:05:00 GMT Pragma: - no-cache Strict-Transport-Security: @@ -16459,15 +16478,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -16485,13 +16504,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:32:03 GMT + - Wed, 03 Jul 2024 14:05:15 GMT Pragma: - no-cache Strict-Transport-Security: @@ -16526,15 +16545,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -16552,13 +16571,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:32:18 GMT + - Wed, 03 Jul 2024 14:05:30 GMT Pragma: - no-cache Strict-Transport-Security: @@ -16593,15 +16612,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -16619,13 +16638,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:32:33 GMT + - Wed, 03 Jul 2024 14:05:45 GMT Pragma: - no-cache Strict-Transport-Security: @@ -16660,15 +16679,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -16686,13 +16705,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:32:48 GMT + - Wed, 03 Jul 2024 14:06:00 GMT Pragma: - no-cache Strict-Transport-Security: @@ -16727,15 +16746,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -16753,13 +16772,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:33:03 GMT + - Wed, 03 Jul 2024 14:06:15 GMT Pragma: - no-cache Strict-Transport-Security: @@ -16794,15 +16813,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -16820,13 +16839,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:33:18 GMT + - Wed, 03 Jul 2024 14:06:30 GMT Pragma: - no-cache Strict-Transport-Security: @@ -16861,15 +16880,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -16887,13 +16906,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:33:33 GMT + - Wed, 03 Jul 2024 14:06:45 GMT Pragma: - no-cache Strict-Transport-Security: @@ -16928,15 +16947,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -16954,13 +16973,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:33:48 GMT + - Wed, 03 Jul 2024 14:07:00 GMT Pragma: - no-cache Strict-Transport-Security: @@ -16995,15 +17014,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -17021,13 +17040,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:34:03 GMT + - Wed, 03 Jul 2024 14:07:15 GMT Pragma: - no-cache Strict-Transport-Security: @@ -17062,15 +17081,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -17088,13 +17107,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:34:18 GMT + - Wed, 03 Jul 2024 14:07:30 GMT Pragma: - no-cache Strict-Transport-Security: @@ -17129,15 +17148,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755368578, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-mysql-test-def-updated", "id": 133362, "type": "database", "url": - "/v4/databases/mysql/instances/133362"}, "status": "notification", "secondary_entity": + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -17155,13 +17174,13 @@ interactions: Connection: - keep-alive Content-Length: - - "465" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:34:33 GMT + - Wed, 03 Jul 2024 14:07:45 GMT Pragma: - no-cache Strict-Transport-Security: @@ -17196,15 +17215,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":133362,"entity.type":"database","id":{"+gte":755368578}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 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": + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": null, "time_remaining": null, "rate": null, + "duration": null, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -17222,13 +17241,13 @@ interactions: Connection: - keep-alive Content-Length: - - "458" + - "477" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:34:48 GMT + - Wed, 03 Jul 2024 14:08:00 GMT Pragma: - no-cache Strict-Transport-Security: @@ -17262,19 +17281,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"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}}' + body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, + "duration": 70, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", + "url": "/v4/databases/mysql/instances/137649"}, "status": "finished", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -17291,13 +17308,13 @@ interactions: Connection: - keep-alive Content-Length: - - "800" + - "470" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:35:03 GMT + - Wed, 03 Jul 2024 14:08:15 GMT Pragma: - no-cache Strict-Transport-Security: @@ -17306,7 +17323,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -17331,10 +17348,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362/ssl + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET response: - body: '{"ca_certificate": null}' + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "active", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, + "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": + 15, "used_disk_size_gb": 2, "members": {"194.195.117.71": "failover", "192.46.209.77": + "failover", "194.195.118.252": "primary"}, "ssl_connection": false, "replication_type": + "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": + 8, "day_of_week": 3, "week_of_month": 3}}' headers: Access-Control-Allow-Credentials: - "true" @@ -17351,13 +17377,13 @@ interactions: Connection: - keep-alive Content-Length: - - "24" + - "813" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:35:03 GMT + - Wed, 03 Jul 2024 14:08:31 GMT Pragma: - no-cache Strict-Transport-Security: @@ -17391,10 +17417,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362/credentials + url: https://api.linode.com/v4beta/databases/mysql/instances/137649/ssl method: GET response: - body: '{"username": "linroot", "password": "ij09wmu-ISYaMk44"}' + body: '{"ca_certificate": null}' headers: Access-Control-Allow-Credentials: - "true" @@ -17411,13 +17437,13 @@ interactions: Connection: - keep-alive Content-Length: - - "55" + - "24" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:35:04 GMT + - Wed, 03 Jul 2024 14:08:31 GMT Pragma: - no-cache Strict-Transport-Security: @@ -17451,7 +17477,67 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362/credentials/reset + url: https://api.linode.com/v4beta/databases/mysql/instances/137649/credentials + method: GET + response: + body: '{"username": "linroot", "password": "C9AU.WILGyp0uPQM"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "55" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 03 Jul 2024 14:08:32 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/137649/credentials/reset method: POST response: body: '{}' @@ -17477,7 +17563,7 @@ interactions: Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:40:05 GMT + - Wed, 03 Jul 2024 14:13:35 GMT Pragma: - no-cache Strict-Transport-Security: @@ -17510,10 +17596,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362/credentials + url: https://api.linode.com/v4beta/databases/mysql/instances/137649/credentials method: GET response: - body: '{"username": "linroot", "password": "Ah1GS8,RKE5Y3okY"}' + body: '{"username": "linroot", "password": "9DD_bma2yXwirZyq"}' headers: Access-Control-Allow-Credentials: - "true" @@ -17536,7 +17622,7 @@ interactions: Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:40:22 GMT + - Wed, 03 Jul 2024 14:13:52 GMT Pragma: - no-cache Strict-Transport-Security: @@ -17570,7 +17656,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362/patch + url: https://api.linode.com/v4beta/databases/mysql/instances/137649/patch method: POST response: body: '{}' @@ -17596,7 +17682,7 @@ interactions: Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:40:24 GMT + - Wed, 03 Jul 2024 14:13:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -17629,14 +17715,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -17657,13 +17743,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:40:39 GMT + - Wed, 03 Jul 2024 14:14:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -17697,14 +17783,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -17725,13 +17811,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:40:54 GMT + - Wed, 03 Jul 2024 14:14:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -17765,14 +17851,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -17793,13 +17879,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:41:09 GMT + - Wed, 03 Jul 2024 14:14:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -17833,14 +17919,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -17861,13 +17947,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:41:24 GMT + - Wed, 03 Jul 2024 14:14:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -17901,14 +17987,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -17929,13 +18015,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:41:39 GMT + - Wed, 03 Jul 2024 14:15:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -17969,14 +18055,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -17997,13 +18083,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:41:54 GMT + - Wed, 03 Jul 2024 14:15:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -18037,14 +18123,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -18065,13 +18151,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:42:09 GMT + - Wed, 03 Jul 2024 14:15:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -18105,14 +18191,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -18133,13 +18219,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:42:24 GMT + - Wed, 03 Jul 2024 14:15:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -18173,14 +18259,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -18201,13 +18287,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:42:39 GMT + - Wed, 03 Jul 2024 14:16:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -18241,14 +18327,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -18269,13 +18355,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:42:54 GMT + - Wed, 03 Jul 2024 14:16:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -18309,14 +18395,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -18337,13 +18423,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:43:09 GMT + - Wed, 03 Jul 2024 14:16:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -18377,14 +18463,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -18405,13 +18491,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:43:24 GMT + - Wed, 03 Jul 2024 14:16:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -18445,14 +18531,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -18473,13 +18559,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:43:39 GMT + - Wed, 03 Jul 2024 14:17:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -18513,14 +18599,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -18541,13 +18627,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:43:54 GMT + - Wed, 03 Jul 2024 14:17:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -18581,14 +18667,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -18609,13 +18695,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:44:09 GMT + - Wed, 03 Jul 2024 14:17:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -18649,14 +18735,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -18677,13 +18763,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:44:24 GMT + - Wed, 03 Jul 2024 14:17:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -18717,14 +18803,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -18745,13 +18831,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:44:39 GMT + - Wed, 03 Jul 2024 14:18:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -18785,14 +18871,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -18813,13 +18899,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:44:54 GMT + - Wed, 03 Jul 2024 14:18:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -18853,14 +18939,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -18881,13 +18967,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:45:09 GMT + - Wed, 03 Jul 2024 14:18:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -18921,14 +19007,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -18949,13 +19035,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:45:24 GMT + - Wed, 03 Jul 2024 14:18:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -18989,14 +19075,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -19017,13 +19103,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:45:39 GMT + - Wed, 03 Jul 2024 14:19:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -19057,14 +19143,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -19085,13 +19171,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:45:54 GMT + - Wed, 03 Jul 2024 14:19:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -19125,14 +19211,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -19153,13 +19239,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:46:09 GMT + - Wed, 03 Jul 2024 14:19:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -19193,14 +19279,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -19221,13 +19307,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:46:24 GMT + - Wed, 03 Jul 2024 14:19:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -19261,14 +19347,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -19289,13 +19375,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:46:39 GMT + - Wed, 03 Jul 2024 14:20:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -19329,14 +19415,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -19357,13 +19443,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:46:54 GMT + - Wed, 03 Jul 2024 14:20:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -19397,14 +19483,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -19425,13 +19511,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:47:09 GMT + - Wed, 03 Jul 2024 14:20:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -19465,14 +19551,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -19493,13 +19579,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:47:24 GMT + - Wed, 03 Jul 2024 14:20:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -19533,14 +19619,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -19561,13 +19647,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:47:39 GMT + - Wed, 03 Jul 2024 14:21:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -19601,14 +19687,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -19629,13 +19715,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:47:54 GMT + - Wed, 03 Jul 2024 14:21:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -19669,14 +19755,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -19697,13 +19783,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:48:09 GMT + - Wed, 03 Jul 2024 14:21:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -19737,14 +19823,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -19765,13 +19851,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:48:24 GMT + - Wed, 03 Jul 2024 14:21:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -19805,14 +19891,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -19833,13 +19919,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:48:39 GMT + - Wed, 03 Jul 2024 14:22:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -19873,14 +19959,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -19901,13 +19987,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:48:54 GMT + - Wed, 03 Jul 2024 14:22:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -19941,14 +20027,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -19969,13 +20055,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:49:09 GMT + - Wed, 03 Jul 2024 14:22:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -20009,14 +20095,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -20037,13 +20123,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:49:24 GMT + - Wed, 03 Jul 2024 14:22:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -20077,14 +20163,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -20105,13 +20191,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:49:39 GMT + - Wed, 03 Jul 2024 14:23:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -20145,14 +20231,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -20173,13 +20259,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:49:54 GMT + - Wed, 03 Jul 2024 14:23:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -20213,14 +20299,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -20241,13 +20327,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:50:09 GMT + - Wed, 03 Jul 2024 14:23:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -20281,14 +20367,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -20309,13 +20395,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:50:24 GMT + - Wed, 03 Jul 2024 14:23:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -20349,14 +20435,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -20377,13 +20463,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:50:39 GMT + - Wed, 03 Jul 2024 14:24:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -20417,14 +20503,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -20445,13 +20531,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:50:54 GMT + - Wed, 03 Jul 2024 14:24:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -20485,14 +20571,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -20513,13 +20599,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:51:09 GMT + - Wed, 03 Jul 2024 14:24:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -20553,14 +20639,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -20581,13 +20667,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:51:24 GMT + - Wed, 03 Jul 2024 14:24:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -20621,14 +20707,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -20649,13 +20735,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:51:39 GMT + - Wed, 03 Jul 2024 14:25:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -20689,14 +20775,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -20717,13 +20803,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:51:54 GMT + - Wed, 03 Jul 2024 14:25:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -20757,14 +20843,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -20785,13 +20871,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:52:09 GMT + - Wed, 03 Jul 2024 14:25:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -20825,14 +20911,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -20853,13 +20939,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:52:24 GMT + - Wed, 03 Jul 2024 14:25:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -20893,14 +20979,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -20921,13 +21007,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:52:39 GMT + - Wed, 03 Jul 2024 14:26:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -20961,14 +21047,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -20989,13 +21075,13 @@ interactions: Connection: - keep-alive Content-Length: - - "716" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:52:54 GMT + - Wed, 03 Jul 2024 14:26:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -21029,16 +21115,16 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": + 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: @@ -21057,13 +21143,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:53:09 GMT + - Wed, 03 Jul 2024 14:26:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -21097,16 +21183,16 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": + 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: @@ -21125,13 +21211,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:53:24 GMT + - Wed, 03 Jul 2024 14:26:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -21165,16 +21251,16 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": + 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: @@ -21193,13 +21279,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:53:39 GMT + - Wed, 03 Jul 2024 14:27:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -21233,16 +21319,84 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": + 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": + "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": + 8, "day_of_week": 3, "week_of_month": 3}}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "728" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 03 Jul 2024 14:27:24 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + method: GET + response: + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, + "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": + 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, "week_of_month": 3}}' headers: @@ -21261,13 +21415,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "728" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:53:54 GMT + - Wed, 03 Jul 2024 14:27:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -21301,14 +21455,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -21329,13 +21483,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:54:09 GMT + - Wed, 03 Jul 2024 14:27:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -21369,14 +21523,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -21397,13 +21551,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:54:24 GMT + - Wed, 03 Jul 2024 14:28:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -21437,14 +21591,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -21465,13 +21619,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:54:39 GMT + - Wed, 03 Jul 2024 14:28:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -21505,14 +21659,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -21533,13 +21687,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:54:54 GMT + - Wed, 03 Jul 2024 14:28:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -21573,14 +21727,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -21601,13 +21755,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:55:09 GMT + - Wed, 03 Jul 2024 14:28:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -21641,14 +21795,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -21669,13 +21823,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:55:24 GMT + - Wed, 03 Jul 2024 14:29:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -21709,14 +21863,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -21737,13 +21891,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:55:39 GMT + - Wed, 03 Jul 2024 14:29:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -21777,14 +21931,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -21805,13 +21959,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:55:54 GMT + - Wed, 03 Jul 2024 14:29:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -21845,14 +21999,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -21873,13 +22027,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:56:09 GMT + - Wed, 03 Jul 2024 14:29:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -21913,14 +22067,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -21941,13 +22095,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:56:24 GMT + - Wed, 03 Jul 2024 14:30:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -21981,14 +22135,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -22009,13 +22163,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:56:39 GMT + - Wed, 03 Jul 2024 14:30:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -22049,14 +22203,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -22077,13 +22231,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:56:54 GMT + - Wed, 03 Jul 2024 14:30:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -22117,14 +22271,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -22145,13 +22299,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:57:09 GMT + - Wed, 03 Jul 2024 14:30:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -22185,14 +22339,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -22213,13 +22367,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:57:24 GMT + - Wed, 03 Jul 2024 14:31:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -22253,14 +22407,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -22281,13 +22435,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:57:39 GMT + - Wed, 03 Jul 2024 14:31:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -22321,14 +22475,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -22349,13 +22503,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:57:54 GMT + - Wed, 03 Jul 2024 14:31:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -22389,14 +22543,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -22417,13 +22571,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:58:09 GMT + - Wed, 03 Jul 2024 14:31:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -22457,14 +22611,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -22485,13 +22639,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:58:24 GMT + - Wed, 03 Jul 2024 14:32:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -22525,14 +22679,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -22553,13 +22707,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:58:39 GMT + - Wed, 03 Jul 2024 14:32:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -22593,14 +22747,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -22621,13 +22775,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:58:54 GMT + - Wed, 03 Jul 2024 14:32:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -22661,14 +22815,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -22689,13 +22843,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:59:09 GMT + - Wed, 03 Jul 2024 14:32:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -22729,14 +22883,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -22757,13 +22911,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:59:24 GMT + - Wed, 03 Jul 2024 14:33:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -22797,14 +22951,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -22825,13 +22979,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:59:39 GMT + - Wed, 03 Jul 2024 14:33:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -22865,14 +23019,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -22893,13 +23047,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 18:59:54 GMT + - Wed, 03 Jul 2024 14:33:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -22933,14 +23087,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -22961,13 +23115,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:00:09 GMT + - Wed, 03 Jul 2024 14:33:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -23001,14 +23155,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -23029,13 +23183,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:00:24 GMT + - Wed, 03 Jul 2024 14:34:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -23069,14 +23223,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -23097,13 +23251,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:00:39 GMT + - Wed, 03 Jul 2024 14:34:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -23137,14 +23291,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -23165,13 +23319,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:00:54 GMT + - Wed, 03 Jul 2024 14:34:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -23205,14 +23359,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -23233,13 +23387,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:01:09 GMT + - Wed, 03 Jul 2024 14:34:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -23273,14 +23427,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -23301,13 +23455,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:01:24 GMT + - Wed, 03 Jul 2024 14:35:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -23341,14 +23495,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -23369,13 +23523,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:01:39 GMT + - Wed, 03 Jul 2024 14:35:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -23409,14 +23563,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -23437,13 +23591,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:01:54 GMT + - Wed, 03 Jul 2024 14:35:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -23477,14 +23631,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -23505,13 +23659,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:02:09 GMT + - Wed, 03 Jul 2024 14:35:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -23545,14 +23699,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -23573,13 +23727,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:02:24 GMT + - Wed, 03 Jul 2024 14:36:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -23613,14 +23767,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -23641,13 +23795,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:02:39 GMT + - Wed, 03 Jul 2024 14:36:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -23681,14 +23835,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -23709,13 +23863,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:02:54 GMT + - Wed, 03 Jul 2024 14:36:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -23749,14 +23903,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -23777,13 +23931,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:03:09 GMT + - Wed, 03 Jul 2024 14:36:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -23817,14 +23971,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -23845,13 +23999,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:03:24 GMT + - Wed, 03 Jul 2024 14:37:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -23885,14 +24039,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -23913,13 +24067,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:03:39 GMT + - Wed, 03 Jul 2024 14:37:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -23953,14 +24107,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -23981,13 +24135,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:03:54 GMT + - Wed, 03 Jul 2024 14:37:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -24021,14 +24175,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -24049,13 +24203,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:04:09 GMT + - Wed, 03 Jul 2024 14:37:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -24089,14 +24243,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -24117,13 +24271,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:04:24 GMT + - Wed, 03 Jul 2024 14:38:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -24157,14 +24311,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -24185,13 +24339,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:04:39 GMT + - Wed, 03 Jul 2024 14:38:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -24225,14 +24379,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -24253,13 +24407,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:04:54 GMT + - Wed, 03 Jul 2024 14:38:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -24293,14 +24447,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -24321,13 +24475,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:05:09 GMT + - Wed, 03 Jul 2024 14:38:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -24361,14 +24515,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -24389,13 +24543,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:05:24 GMT + - Wed, 03 Jul 2024 14:39:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -24429,14 +24583,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -24457,13 +24611,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:05:39 GMT + - Wed, 03 Jul 2024 14:39:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -24497,14 +24651,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -24525,13 +24679,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:05:54 GMT + - Wed, 03 Jul 2024 14:39:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -24565,14 +24719,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -24593,13 +24747,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:06:09 GMT + - Wed, 03 Jul 2024 14:39:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -24633,14 +24787,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -24661,13 +24815,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:06:24 GMT + - Wed, 03 Jul 2024 14:40:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -24701,14 +24855,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -24729,13 +24883,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:06:39 GMT + - Wed, 03 Jul 2024 14:40:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -24769,14 +24923,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -24797,13 +24951,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:06:54 GMT + - Wed, 03 Jul 2024 14:40:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -24837,14 +24991,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -24865,13 +25019,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:07:09 GMT + - Wed, 03 Jul 2024 14:40:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -24905,14 +25059,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -24933,13 +25087,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:07:24 GMT + - Wed, 03 Jul 2024 14:41:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -24973,14 +25127,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -25001,13 +25155,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:07:39 GMT + - Wed, 03 Jul 2024 14:41:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -25041,14 +25195,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -25069,13 +25223,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:07:54 GMT + - Wed, 03 Jul 2024 14:41:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -25109,14 +25263,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -25137,13 +25291,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:08:09 GMT + - Wed, 03 Jul 2024 14:41:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -25177,14 +25331,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -25205,13 +25359,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:08:24 GMT + - Wed, 03 Jul 2024 14:42:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -25245,14 +25399,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -25273,13 +25427,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:08:39 GMT + - Wed, 03 Jul 2024 14:42:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -25313,14 +25467,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -25341,13 +25495,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:08:54 GMT + - Wed, 03 Jul 2024 14:42:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -25381,14 +25535,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -25409,13 +25563,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:09:09 GMT + - Wed, 03 Jul 2024 14:42:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -25449,14 +25603,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -25477,13 +25631,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:09:24 GMT + - Wed, 03 Jul 2024 14:43:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -25517,14 +25671,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -25545,13 +25699,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:09:39 GMT + - Wed, 03 Jul 2024 14:43:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -25585,14 +25739,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -25613,13 +25767,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:09:54 GMT + - Wed, 03 Jul 2024 14:43:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -25653,14 +25807,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -25681,13 +25835,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:10:09 GMT + - Wed, 03 Jul 2024 14:43:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -25721,14 +25875,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -25749,13 +25903,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:10:24 GMT + - Wed, 03 Jul 2024 14:44:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -25789,14 +25943,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -25817,13 +25971,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:10:39 GMT + - Wed, 03 Jul 2024 14:44:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -25857,14 +26011,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -25885,13 +26039,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:10:54 GMT + - Wed, 03 Jul 2024 14:44:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -25925,14 +26079,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -25953,13 +26107,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:11:09 GMT + - Wed, 03 Jul 2024 14:44:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -25993,14 +26147,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -26021,13 +26175,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:11:24 GMT + - Wed, 03 Jul 2024 14:45:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -26061,14 +26215,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -26089,13 +26243,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:11:39 GMT + - Wed, 03 Jul 2024 14:45:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -26129,14 +26283,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -26157,13 +26311,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:11:54 GMT + - Wed, 03 Jul 2024 14:45:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -26197,14 +26351,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -26225,13 +26379,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:12:09 GMT + - Wed, 03 Jul 2024 14:45:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -26265,14 +26419,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -26293,13 +26447,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:12:24 GMT + - Wed, 03 Jul 2024 14:46:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -26333,14 +26487,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -26361,13 +26515,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:12:39 GMT + - Wed, 03 Jul 2024 14:46:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -26401,14 +26555,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -26429,13 +26583,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:12:54 GMT + - Wed, 03 Jul 2024 14:46:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -26469,14 +26623,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -26497,13 +26651,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:13:09 GMT + - Wed, 03 Jul 2024 14:46:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -26537,14 +26691,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -26565,13 +26719,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:13:24 GMT + - Wed, 03 Jul 2024 14:47:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -26605,14 +26759,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -26633,13 +26787,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:13:39 GMT + - Wed, 03 Jul 2024 14:47:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -26673,14 +26827,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -26701,13 +26855,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:13:54 GMT + - Wed, 03 Jul 2024 14:47:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -26741,14 +26895,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -26769,13 +26923,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:14:09 GMT + - Wed, 03 Jul 2024 14:47:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -26809,14 +26963,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -26837,13 +26991,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:14:24 GMT + - Wed, 03 Jul 2024 14:48:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -26877,14 +27031,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -26905,13 +27059,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:14:39 GMT + - Wed, 03 Jul 2024 14:48:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -26945,14 +27099,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -26973,13 +27127,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:14:54 GMT + - Wed, 03 Jul 2024 14:48:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27013,14 +27167,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -27041,13 +27195,13 @@ interactions: Connection: - keep-alive Content-Length: - - "715" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:15:09 GMT + - Wed, 03 Jul 2024 14:48:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27081,17 +27235,16 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET response: - 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {"172.105.36.137": "primary", "172.105.63.12": - "failover", "194.195.119.223": "failover"}, "ssl_connection": false, "replication_type": + 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, "week_of_month": 3}}' headers: @@ -27110,13 +27263,13 @@ interactions: Connection: - keep-alive Content-Length: - - "800" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:15:24 GMT + - Wed, 03 Jul 2024 14:49:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27141,7 +27294,7 @@ interactions: code: 200 duration: "" - request: - body: '{"label":"mysqlbackupforlinodego","target":"primary"}' + body: "" form: {} headers: Accept: @@ -27150,10 +27303,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362/backups - method: POST + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + method: GET response: - body: '{}' + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, + "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": + 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": + "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": + 8, "day_of_week": 3, "week_of_month": 3}}' headers: Access-Control-Allow-Credentials: - "true" @@ -27170,21 +27331,22 @@ interactions: Connection: - keep-alive Content-Length: - - "2" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:15:27 GMT + - Wed, 03 Jul 2024 14:49:24 GMT Pragma: - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter + - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -27209,10 +27371,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362/backups + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET response: - body: '{"data": [], "page": 1, "pages": 1, "results": 0}' + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, + "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": + 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": + "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": + 8, "day_of_week": 3, "week_of_month": 3}}' headers: Access-Control-Allow-Credentials: - "true" @@ -27229,13 +27399,13 @@ interactions: Connection: - keep-alive Content-Length: - - "49" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:15:43 GMT + - Wed, 03 Jul 2024 14:49:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27244,7 +27414,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -27269,10 +27439,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362/backups + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET response: - body: '{"data": [], "page": 1, "pages": 1, "results": 0}' + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, + "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": + 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": + "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": + 8, "day_of_week": 3, "week_of_month": 3}}' headers: Access-Control-Allow-Credentials: - "true" @@ -27289,13 +27467,13 @@ interactions: Connection: - keep-alive Content-Length: - - "49" + - "727" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:15:58 GMT + - Wed, 03 Jul 2024 14:49:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27304,7 +27482,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -27329,10 +27507,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362/backups + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET response: - body: '{"data": [], "page": 1, "pages": 1, "results": 0}' + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "active", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, + "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": + 0, "used_disk_size_gb": 0, "members": {"194.195.117.71": "failover", "192.46.209.77": + "failover", "194.195.118.252": "primary"}, "ssl_connection": false, "replication_type": + "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": + 8, "day_of_week": 3, "week_of_month": 3}}' headers: Access-Control-Allow-Credentials: - "true" @@ -27349,13 +27536,13 @@ interactions: Connection: - keep-alive Content-Length: - - "49" + - "812" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:16:13 GMT + - Wed, 03 Jul 2024 14:50:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27364,6 +27551,65 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"label":"mysqlbackupforlinodego","target":"primary"}' + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/137649/backups + method: POST + response: + body: '{}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "2" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 03 Jul 2024 14:50:12 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: - databases:read_write X-Content-Type-Options: - nosniff @@ -27389,7 +27635,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362/backups + url: https://api.linode.com/v4beta/databases/mysql/instances/137649/backups?page=1 method: GET response: body: '{"data": [], "page": 1, "pages": 1, "results": 0}' @@ -27415,7 +27661,7 @@ interactions: Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:16:28 GMT + - Wed, 03 Jul 2024 14:50:28 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27449,7 +27695,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362/backups + url: https://api.linode.com/v4beta/databases/mysql/instances/137649/backups?page=1 method: GET response: body: '{"data": [], "page": 1, "pages": 1, "results": 0}' @@ -27475,7 +27721,7 @@ interactions: Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:16:43 GMT + - Wed, 03 Jul 2024 14:50:43 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27509,7 +27755,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362/backups + url: https://api.linode.com/v4beta/databases/mysql/instances/137649/backups?page=1 method: GET response: body: '{"data": [], "page": 1, "pages": 1, "results": 0}' @@ -27535,7 +27781,7 @@ interactions: Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:16:58 GMT + - Wed, 03 Jul 2024 14:50:58 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27569,7 +27815,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362/backups + url: https://api.linode.com/v4beta/databases/mysql/instances/137649/backups?page=1 method: GET response: body: '{"data": [], "page": 1, "pages": 1, "results": 0}' @@ -27595,7 +27841,7 @@ interactions: Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:17:13 GMT + - Wed, 03 Jul 2024 14:51:13 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27629,7 +27875,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362/backups + url: https://api.linode.com/v4beta/databases/mysql/instances/137649/backups?page=1 method: GET response: body: '{"data": [], "page": 1, "pages": 1, "results": 0}' @@ -27655,7 +27901,7 @@ interactions: Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:17:28 GMT + - Wed, 03 Jul 2024 14:51:28 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27689,11 +27935,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362/backups + url: https://api.linode.com/v4beta/databases/mysql/instances/137649/backups?page=1 method: GET response: - body: '{"data": [{"id": 1425321, "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" @@ -27710,13 +27955,13 @@ interactions: Connection: - keep-alive Content-Length: - - "153" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:17:43 GMT + - Wed, 03 Jul 2024 14:51:43 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27750,11 +27995,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362/backups/1425321 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649/backups?page=1 method: GET response: - body: '{"id": 1425321, "type": "snapshot", "label": "mysqlbackupforlinodego", - "created": "2018-01-02T03:04:05"}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -27771,13 +28015,13 @@ interactions: Connection: - keep-alive Content-Length: - - "104" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:17:44 GMT + - Wed, 03 Jul 2024 14:51:58 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27811,18 +28055,11 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649/backups?page=1 method: GET response: - 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", - "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}}' + body: '{"data": [{"id": 1441811, "type": "snapshot", "label": "mysqlbackupforlinodego", + "created": "2018-01-02T03:04:05"}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -27839,13 +28076,13 @@ interactions: Connection: - keep-alive Content-Length: - - "717" + - "153" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:18:00 GMT + - Wed, 03 Jul 2024 14:52:13 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27854,7 +28091,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -27879,18 +28116,11 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649/backups/1441811 method: GET response: - 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", - "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}}' + body: '{"id": 1441811, "type": "snapshot", "label": "mysqlbackupforlinodego", + "created": "2018-01-02T03:04:05"}' headers: Access-Control-Allow-Credentials: - "true" @@ -27907,13 +28137,13 @@ interactions: Connection: - keep-alive Content-Length: - - "717" + - "104" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:18:15 GMT + - Wed, 03 Jul 2024 14:52:14 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27922,7 +28152,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -27947,14 +28177,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET response: - 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", - "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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -27975,13 +28205,13 @@ interactions: Connection: - keep-alive Content-Length: - - "717" + - "729" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:18:30 GMT + - Wed, 03 Jul 2024 14:52:29 GMT Pragma: - no-cache Strict-Transport-Security: @@ -28015,14 +28245,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET response: - 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", - "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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -28043,13 +28273,13 @@ interactions: Connection: - keep-alive Content-Length: - - "717" + - "729" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:18:45 GMT + - Wed, 03 Jul 2024 14:52:44 GMT Pragma: - no-cache Strict-Transport-Security: @@ -28083,14 +28313,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET response: - 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", - "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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -28111,13 +28341,13 @@ interactions: Connection: - keep-alive Content-Length: - - "717" + - "729" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:19:00 GMT + - Wed, 03 Jul 2024 14:52:59 GMT Pragma: - no-cache Strict-Transport-Security: @@ -28151,14 +28381,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET response: - 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", - "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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -28179,13 +28409,13 @@ interactions: Connection: - keep-alive Content-Length: - - "717" + - "729" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:19:15 GMT + - Wed, 03 Jul 2024 14:53:14 GMT Pragma: - no-cache Strict-Transport-Security: @@ -28219,14 +28449,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET response: - 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", - "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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": @@ -28247,13 +28477,13 @@ interactions: Connection: - keep-alive Content-Length: - - "717" + - "729" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:19:30 GMT + - Wed, 03 Jul 2024 14:53:29 GMT Pragma: - no-cache Strict-Transport-Security: @@ -28287,17 +28517,493 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: GET response: - 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"}, + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, + "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": + 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": + "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": + 8, "day_of_week": 3, "week_of_month": 3}}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "729" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 03 Jul 2024 14:53:44 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + method: GET + response: + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, + "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": + 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": + "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": + 8, "day_of_week": 3, "week_of_month": 3}}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "729" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 03 Jul 2024 14:53:59 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + method: GET + response: + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, + "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": + 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": + "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": + 8, "day_of_week": 3, "week_of_month": 3}}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "729" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 03 Jul 2024 14:54:14 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + method: GET + response: + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, + "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": + 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": + "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": + 8, "day_of_week": 3, "week_of_month": 3}}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "729" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 03 Jul 2024 14:54:29 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + method: GET + response: + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, + "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": + 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": + "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": + 8, "day_of_week": 3, "week_of_month": 3}}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "729" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 03 Jul 2024 14:54:45 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + method: GET + response: + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, + "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": + 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": + "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": + 8, "day_of_week": 3, "week_of_month": 3}}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "729" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 03 Jul 2024 14:54:59 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + method: GET + response: + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, + "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": + 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": + "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": + 8, "day_of_week": 3, "week_of_month": 3}}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "729" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 03 Jul 2024 14:55:14 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "400" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + method: GET + response: + body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": + "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", + "status": "active", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", + "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", + "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 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": + 0, "used_disk_size_gb": 0, "members": {"194.195.117.71": "failover", "192.46.209.77": + "failover", "194.195.118.252": "primary"}, "ssl_connection": false, "replication_type": "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": 8, "day_of_week": 3, "week_of_month": 3}}' headers: @@ -28316,13 +29022,13 @@ interactions: Connection: - keep-alive Content-Length: - - "801" + - "812" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:19:45 GMT + - Wed, 03 Jul 2024 14:55:29 GMT Pragma: - no-cache Strict-Transport-Security: @@ -28356,7 +29062,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/133362 + url: https://api.linode.com/v4beta/databases/mysql/instances/137649 method: DELETE response: body: '{}' @@ -28382,7 +29088,7 @@ interactions: Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:20:02 GMT + - Wed, 03 Jul 2024 14:55:47 GMT Pragma: - no-cache Strict-Transport-Security: diff --git a/test/integration/fixtures/TestLKECluster_APIEndpoints_List.yaml b/test/integration/fixtures/TestLKECluster_APIEndpoints_List.yaml index 96b4a02bc..538875b83 100644 --- a/test/integration/fixtures/TestLKECluster_APIEndpoints_List.yaml +++ b/test/integration/fixtures/TestLKECluster_APIEndpoints_List.yaml @@ -14,56 +14,263 @@ interactions: url: https://api.linode.com/v4beta/regions method: GET response: - body: '{"data": [{"id": "ap-west", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ca-central", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ap-southeast", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-central", "country": "us", "capabilities": ["Linodes", "NodeBalancers", - "Block Storage", "Kubernetes", "Cloud Firewall", "Block Storage Migrations", - "Managed Databases"], "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", "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", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", + "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", + "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5, + 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5, + 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5, + 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5, + 172.105.11.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5, + 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, + 172.105.161.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium + Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, + 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, + 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", + "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status": + "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, + 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label": + "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-east", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status": + "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18, + 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label": + "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Bare Metal", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "eu-west", "country": "uk", "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", "country": "sg", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, + 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label": + "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, + 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country": + "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38, + 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30, + 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22, + 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21, + 172.232.128.27", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25, + 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18, + 172.233.111.9", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20, + 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label": + "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "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", "country": "de", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46, + 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label": + "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24, + 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label": + "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32, + 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label": + "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21, + 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label": + "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34, + 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label": + "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50, + 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51, + 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32, + 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central", + "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5, + 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, + 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, + 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5, + 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::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"], "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", "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": 11}' + "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"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU + Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5, + 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5, + 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast", + "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5, + 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}], "page": 1, "pages": 1, "results": 27}' headers: Access-Control-Allow-Credentials: - "true" @@ -76,19 +283,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, 01 Jul 2024 18:17:03 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: @@ -99,14 +310,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-lke-test-apiend","region":"ap-west","k8s_version":"1.23","tags":["testing"]}' + body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-lke-test-apiend","region":"ap-west","k8s_version":"1.29","tags":["testing"]}' form: {} headers: Accept: @@ -118,9 +329,9 @@ interactions: url: https://api.linode.com/v4beta/lke/clusters method: POST response: - body: '{"id": 76166, "status": "ready", "created": "2018-01-02T03:04:05", "updated": + body: '{"id": 196077, "status": "ready", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "label": "go-lke-test-apiend", "region": "ap-west", "k8s_version": - "1.23", "control_plane": {"high_availability": false}, "tags": ["testing"]}' + "1.29", "control_plane": {"high_availability": false}, "tags": ["testing"]}' headers: Access-Control-Allow-Credentials: - "true" @@ -133,15 +344,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: - - "243" + - "244" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:17:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -156,7 +371,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -172,135 +387,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76166/api-endpoints + url: https://api.linode.com/v4beta/lke/clusters/196077/api-endpoints?page=1 method: GET response: - body: '{"errors": [{"reason": "Cluster API Endpoints are not yet available. Please - try again later."}]}' - headers: - Access-Control-Allow-Headers: - - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter - Access-Control-Allow-Methods: - - HEAD, GET, OPTIONS, POST, PUT, DELETE - Access-Control-Allow-Origin: - - '*' - Content-Length: - - "96" - Content-Type: - - application/json - Server: - - nginx - Vary: - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - lke:read_only - X-Frame-Options: - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "800" - status: 503 Service Unavailable - code: 503 - duration: "" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76166/api-endpoints - method: GET - response: - body: '{"errors": [{"reason": "Cluster API Endpoints are not yet available. Please - try again later."}]}' - headers: - Access-Control-Allow-Headers: - - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter - Access-Control-Allow-Methods: - - HEAD, GET, OPTIONS, POST, PUT, DELETE - Access-Control-Allow-Origin: - - '*' - Content-Length: - - "96" - Content-Type: - - application/json - Server: - - nginx - Vary: - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - lke:read_only - X-Frame-Options: - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "800" - status: 503 Service Unavailable - code: 503 - duration: "" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76166/api-endpoints - method: GET - response: - body: '{"errors": [{"reason": "Cluster API Endpoints are not yet available. Please - try again later."}]}' - headers: - Access-Control-Allow-Headers: - - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter - Access-Control-Allow-Methods: - - HEAD, GET, OPTIONS, POST, PUT, DELETE - Access-Control-Allow-Origin: - - '*' - Content-Length: - - "96" - Content-Type: - - application/json - Server: - - nginx - Vary: - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - lke:read_only - X-Frame-Options: - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "800" - status: 503 Service Unavailable - code: 503 - duration: "" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76166/api-endpoints - method: GET - response: - body: '{"page": 1, "pages": 1, "results": 4, "data": [{"endpoint": "https://065a2454-9ec1-45de-95dd-59581bddc587.ap-west-2.linodelke.net:443"}, - {"endpoint": "https://065a2454-9ec1-45de-95dd-59581bddc587.ap-west-2.linodelke.net:6443"}, - {"endpoint": "https://172.105.44.221:443"}, {"endpoint": "https://172.105.44.221:6443"}]}' + body: '{"page": 1, "pages": 1, "results": 4, "data": [{"endpoint": "https://ead3a41f-9d4a-41e9-9528-857403f9be3a.ap-west-2.linodelke.net:443"}, + {"endpoint": "https://ead3a41f-9d4a-41e9-9528-857403f9be3a.ap-west-2.linodelke.net:6443"}, + {"endpoint": "https://172.105.44.5:443"}, {"endpoint": "https://172.105.44.5:6443"}]}' headers: Access-Control-Allow-Credentials: - "true" @@ -313,16 +405,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "317" + - "313" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:17:15 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -338,7 +433,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -354,7 +449,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76166 + url: https://api.linode.com/v4beta/lke/clusters/196077 method: DELETE response: body: '{}' @@ -370,15 +465,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, 01 Jul 2024 18:17:18 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -393,7 +492,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/TestLKECluster_Dashboard_Get.yaml b/test/integration/fixtures/TestLKECluster_Dashboard_Get.yaml index 4e2ea82b1..11360cdc8 100644 --- a/test/integration/fixtures/TestLKECluster_Dashboard_Get.yaml +++ b/test/integration/fixtures/TestLKECluster_Dashboard_Get.yaml @@ -14,56 +14,263 @@ interactions: url: https://api.linode.com/v4beta/regions method: GET response: - body: '{"data": [{"id": "ap-west", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ca-central", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ap-southeast", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-central", "country": "us", "capabilities": ["Linodes", "NodeBalancers", - "Block Storage", "Kubernetes", "Cloud Firewall", "Block Storage Migrations", - "Managed Databases"], "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", "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", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", + "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", + "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5, + 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5, + 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5, + 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5, + 172.105.11.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5, + 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, + 172.105.161.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium + Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, + 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, + 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", + "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status": + "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, + 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label": + "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-east", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status": + "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18, + 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label": + "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Bare Metal", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "eu-west", "country": "uk", "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", "country": "sg", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, + 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label": + "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, + 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country": + "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38, + 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30, + 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22, + 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21, + 172.232.128.27", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25, + 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18, + 172.233.111.9", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20, + 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label": + "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "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", "country": "de", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46, + 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label": + "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24, + 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label": + "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32, + 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label": + "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21, + 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label": + "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34, + 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label": + "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50, + 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51, + 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32, + 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central", + "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5, + 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, + 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, + 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5, + 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::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"], "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", "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": 11}' + "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"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU + Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5, + 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5, + 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast", + "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5, + 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}], "page": 1, "pages": 1, "results": 27}' headers: Access-Control-Allow-Credentials: - "true" @@ -76,19 +283,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, 01 Jul 2024 18:18:39 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: @@ -99,14 +310,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-lke-test-dash","region":"ap-west","k8s_version":"1.23","tags":["testing"]}' + body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-lke-test-dash","region":"ap-west","k8s_version":"1.29","tags":["testing"]}' form: {} headers: Accept: @@ -118,9 +329,9 @@ interactions: url: https://api.linode.com/v4beta/lke/clusters method: POST response: - body: '{"id": 76168, "status": "ready", "created": "2018-01-02T03:04:05", "updated": + body: '{"id": 196079, "status": "ready", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "label": "go-lke-test-dash", "region": "ap-west", "k8s_version": - "1.23", "control_plane": {"high_availability": false}, "tags": ["testing"]}' + "1.29", "control_plane": {"high_availability": false}, "tags": ["testing"]}' headers: Access-Control-Allow-Credentials: - "true" @@ -133,15 +344,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: - - "241" + - "242" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:18:49 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -156,7 +371,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -172,12 +387,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76168 + url: https://api.linode.com/v4beta/lke/clusters/196079 method: GET response: - body: '{"id": 76168, "status": "ready", "created": "2018-01-02T03:04:05", "updated": + body: '{"id": 196079, "status": "ready", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "label": "go-lke-test-dash", "region": "ap-west", "k8s_version": - "1.23", "control_plane": {"high_availability": false}, "tags": ["testing"]}' + "1.29", "control_plane": {"high_availability": false}, "tags": ["testing"]}' headers: Access-Control-Allow-Credentials: - "true" @@ -190,16 +405,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "241" + - "242" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:19:05 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -215,7 +433,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -231,10 +449,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76168/dashboard + url: https://api.linode.com/v4beta/lke/clusters/196079/dashboard method: GET response: - body: '{"url": "https://4540c914-7a8a-4f92-8d98-ddd1d60d9476.dashboard.ap-west-2.linodelke.net"}' + body: '{"url": "https://6192967f-158f-494c-8f3f-43b0c252fcdf.dashboard.ap-west-2.linodelke.net"}' headers: Access-Control-Allow-Credentials: - "true" @@ -247,16 +465,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "89" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:19:06 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -272,7 +493,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -288,7 +509,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76168 + url: https://api.linode.com/v4beta/lke/clusters/196079 method: DELETE response: body: '{}' @@ -304,15 +525,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, 01 Jul 2024 18:19:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -327,7 +552,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/TestLKECluster_GetFound.yaml b/test/integration/fixtures/TestLKECluster_GetFound.yaml index f0abcb535..af5448280 100644 --- a/test/integration/fixtures/TestLKECluster_GetFound.yaml +++ b/test/integration/fixtures/TestLKECluster_GetFound.yaml @@ -14,56 +14,263 @@ interactions: url: https://api.linode.com/v4beta/regions method: GET response: - body: '{"data": [{"id": "ap-west", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ca-central", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ap-southeast", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-central", "country": "us", "capabilities": ["Linodes", "NodeBalancers", - "Block Storage", "Kubernetes", "Cloud Firewall", "Block Storage Migrations", - "Managed Databases"], "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", "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", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", + "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", + "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5, + 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5, + 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5, + 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5, + 172.105.11.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5, + 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, + 172.105.161.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium + Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, + 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, + 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", + "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status": + "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, + 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label": + "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-east", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status": + "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18, + 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label": + "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Bare Metal", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "eu-west", "country": "uk", "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", "country": "sg", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, + 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label": + "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, + 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country": + "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38, + 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30, + 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22, + 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21, + 172.232.128.27", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25, + 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18, + 172.233.111.9", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20, + 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label": + "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "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", "country": "de", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46, + 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label": + "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24, + 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label": + "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32, + 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label": + "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21, + 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label": + "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34, + 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label": + "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50, + 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51, + 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32, + 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central", + "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5, + 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, + 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, + 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5, + 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::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"], "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", "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": 11}' + "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"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU + Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5, + 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5, + 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast", + "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5, + 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}], "page": 1, "pages": 1, "results": 27}' headers: Access-Control-Allow-Credentials: - "true" @@ -76,19 +283,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, 01 Jul 2024 18:16:15 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: @@ -99,14 +310,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-lke-test-found","region":"ap-west","k8s_version":"1.23","tags":["testing"]}' + body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-lke-test-found","region":"ap-west","k8s_version":"1.29","tags":["testing"]}' form: {} headers: Accept: @@ -118,9 +329,9 @@ interactions: url: https://api.linode.com/v4beta/lke/clusters method: POST response: - body: '{"id": 76163, "status": "ready", "created": "2018-01-02T03:04:05", "updated": + body: '{"id": 196074, "status": "ready", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "label": "go-lke-test-found", "region": "ap-west", "k8s_version": - "1.23", "control_plane": {"high_availability": false}, "tags": ["testing"]}' + "1.29", "control_plane": {"high_availability": false}, "tags": ["testing"]}' headers: Access-Control-Allow-Credentials: - "true" @@ -133,15 +344,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: - - "242" + - "243" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:16:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -156,7 +371,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -172,12 +387,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76163 + url: https://api.linode.com/v4beta/lke/clusters/196074 method: GET response: - body: '{"id": 76163, "status": "ready", "created": "2018-01-02T03:04:05", "updated": + body: '{"id": 196074, "status": "ready", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "label": "go-lke-test-found", "region": "ap-west", "k8s_version": - "1.23", "control_plane": {"high_availability": false}, "tags": ["testing"]}' + "1.29", "control_plane": {"high_availability": false}, "tags": ["testing"]}' headers: Access-Control-Allow-Credentials: - "true" @@ -190,16 +405,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "242" + - "243" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:16:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -215,7 +433,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -231,7 +449,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76163 + url: https://api.linode.com/v4beta/lke/clusters/196074 method: DELETE response: body: '{}' @@ -247,15 +465,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, 01 Jul 2024 18:16:30 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -270,7 +492,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/TestLKECluster_GetMissing.yaml b/test/integration/fixtures/TestLKECluster_GetMissing.yaml index ebd5a05fc..02cf6f3eb 100644 --- a/test/integration/fixtures/TestLKECluster_GetMissing.yaml +++ b/test/integration/fixtures/TestLKECluster_GetMissing.yaml @@ -23,13 +23,17 @@ interactions: Access-Control-Allow-Origin: - '*' Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "37" Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:13:34 GMT + Pragma: + - no-cache Vary: - Authorization, X-Filter X-Accepted-Oauth-Scopes: @@ -39,7 +43,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" status: 404 Not Found code: 404 duration: "" diff --git a/test/integration/fixtures/TestLKECluster_Kubeconfig_Get.yaml b/test/integration/fixtures/TestLKECluster_Kubeconfig_Get.yaml index f4ecc6049..e497e18bc 100644 --- a/test/integration/fixtures/TestLKECluster_Kubeconfig_Get.yaml +++ b/test/integration/fixtures/TestLKECluster_Kubeconfig_Get.yaml @@ -14,56 +14,263 @@ interactions: url: https://api.linode.com/v4beta/regions method: GET response: - body: '{"data": [{"id": "ap-west", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ca-central", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ap-southeast", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-central", "country": "us", "capabilities": ["Linodes", "NodeBalancers", - "Block Storage", "Kubernetes", "Cloud Firewall", "Block Storage Migrations", - "Managed Databases"], "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", "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", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", + "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", + "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5, + 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5, + 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5, + 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5, + 172.105.11.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5, + 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, + 172.105.161.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium + Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, + 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, + 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", + "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status": + "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, + 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label": + "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-east", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status": + "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18, + 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label": + "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Bare Metal", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "eu-west", "country": "uk", "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", "country": "sg", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, + 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label": + "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, + 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country": + "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38, + 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30, + 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22, + 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21, + 172.232.128.27", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25, + 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18, + 172.233.111.9", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20, + 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label": + "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "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", "country": "de", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46, + 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label": + "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24, + 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label": + "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32, + 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label": + "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21, + 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label": + "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34, + 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label": + "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50, + 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51, + 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32, + 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central", + "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5, + 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, + 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, + 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5, + 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::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"], "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", "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": 11}' + "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"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU + Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5, + 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5, + 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast", + "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5, + 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}], "page": 1, "pages": 1, "results": 27}' headers: Access-Control-Allow-Credentials: - "true" @@ -76,19 +283,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, 01 Jul 2024 18:17:18 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: @@ -99,14 +310,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-lke-test-kube-get","region":"ap-west","k8s_version":"1.23","tags":["testing"]}' + body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-lke-test-kube-get","region":"ap-west","k8s_version":"1.29","tags":["testing"]}' form: {} headers: Accept: @@ -118,9 +329,9 @@ interactions: url: https://api.linode.com/v4beta/lke/clusters method: POST response: - body: '{"id": 76167, "status": "ready", "created": "2018-01-02T03:04:05", "updated": + body: '{"id": 196078, "status": "ready", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "label": "go-lke-test-kube-get", "region": "ap-west", - "k8s_version": "1.23", "control_plane": {"high_availability": false}, "tags": + "k8s_version": "1.29", "control_plane": {"high_availability": false}, "tags": ["testing"]}' headers: Access-Control-Allow-Credentials: @@ -134,15 +345,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: - - "245" + - "246" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:17:28 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -157,7 +372,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -173,12 +388,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76167 + url: https://api.linode.com/v4beta/lke/clusters/196078 method: GET response: - body: '{"id": 76167, "status": "ready", "created": "2018-01-02T03:04:05", "updated": + body: '{"id": 196078, "status": "ready", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "label": "go-lke-test-kube-get", "region": "ap-west", - "k8s_version": "1.23", "control_plane": {"high_availability": false}, "tags": + "k8s_version": "1.29", "control_plane": {"high_availability": false}, "tags": ["testing"]}' headers: Access-Control-Allow-Credentials: @@ -192,16 +407,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "245" + - "246" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:17:43 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -217,7 +435,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -233,171 +451,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76167/kubeconfig - method: GET - response: - body: '{"errors": [{"reason": "Cluster kubeconfig is not yet available. Please - try again later."}]}' - headers: - Access-Control-Allow-Headers: - - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter - Access-Control-Allow-Methods: - - HEAD, GET, OPTIONS, POST, PUT, DELETE - Access-Control-Allow-Origin: - - '*' - Content-Length: - - "92" - Content-Type: - - application/json - Server: - - nginx - Vary: - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - lke:read_write - X-Frame-Options: - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "800" - status: 503 Service Unavailable - code: 503 - duration: "" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76167/kubeconfig - method: GET - response: - body: '{"errors": [{"reason": "Cluster kubeconfig is not yet available. Please - try again later."}]}' - headers: - Access-Control-Allow-Headers: - - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter - Access-Control-Allow-Methods: - - HEAD, GET, OPTIONS, POST, PUT, DELETE - Access-Control-Allow-Origin: - - '*' - Content-Length: - - "92" - Content-Type: - - application/json - Server: - - nginx - Vary: - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - lke:read_write - X-Frame-Options: - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "800" - status: 503 Service Unavailable - code: 503 - duration: "" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76167/kubeconfig - method: GET - response: - body: '{"errors": [{"reason": "Cluster kubeconfig is not yet available. Please - try again later."}]}' - headers: - Access-Control-Allow-Headers: - - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter - Access-Control-Allow-Methods: - - HEAD, GET, OPTIONS, POST, PUT, DELETE - Access-Control-Allow-Origin: - - '*' - Content-Length: - - "92" - Content-Type: - - application/json - Server: - - nginx - Vary: - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - lke:read_write - X-Frame-Options: - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "800" - status: 503 Service Unavailable - code: 503 - duration: "" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76167/kubeconfig - method: GET - response: - body: '{"errors": [{"reason": "Cluster kubeconfig is not yet available. Please - try again later."}]}' - headers: - Access-Control-Allow-Headers: - - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter - Access-Control-Allow-Methods: - - HEAD, GET, OPTIONS, POST, PUT, DELETE - Access-Control-Allow-Origin: - - '*' - Content-Length: - - "92" - Content-Type: - - application/json - Server: - - nginx - Vary: - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - lke:read_write - X-Frame-Options: - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "800" - status: 503 Service Unavailable - code: 503 - duration: "" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76167/kubeconfig + url: https://api.linode.com/v4beta/lke/clusters/196078/kubeconfig method: GET response: body: '{"errors": [{"reason": "Cluster kubeconfig is not yet available. Please @@ -409,12 +463,18 @@ interactions: - HEAD, GET, OPTIONS, POST, PUT, DELETE Access-Control-Allow-Origin: - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "92" Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:17:44 GMT + Pragma: + - no-cache Vary: - Authorization, X-Filter X-Accepted-Oauth-Scopes: @@ -424,7 +484,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" status: 503 Service Unavailable code: 503 duration: "" @@ -438,7 +498,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76167/kubeconfig + url: https://api.linode.com/v4beta/lke/clusters/196078/kubeconfig method: GET response: body: '{"errors": [{"reason": "Cluster kubeconfig is not yet available. Please @@ -450,12 +510,18 @@ interactions: - HEAD, GET, OPTIONS, POST, PUT, DELETE Access-Control-Allow-Origin: - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "92" Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:17:48 GMT + Pragma: + - no-cache Vary: - Authorization, X-Filter X-Accepted-Oauth-Scopes: @@ -465,7 +531,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" status: 503 Service Unavailable code: 503 duration: "" @@ -479,7 +545,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76167/kubeconfig + url: https://api.linode.com/v4beta/lke/clusters/196078/kubeconfig method: GET response: body: '{"errors": [{"reason": "Cluster kubeconfig is not yet available. Please @@ -491,12 +557,18 @@ interactions: - HEAD, GET, OPTIONS, POST, PUT, DELETE Access-Control-Allow-Origin: - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "92" Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:17:53 GMT + Pragma: + - no-cache Vary: - Authorization, X-Filter X-Accepted-Oauth-Scopes: @@ -506,7 +578,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" status: 503 Service Unavailable code: 503 duration: "" @@ -520,7 +592,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76167/kubeconfig + url: https://api.linode.com/v4beta/lke/clusters/196078/kubeconfig method: GET response: body: '{"errors": [{"reason": "Cluster kubeconfig is not yet available. Please @@ -532,12 +604,18 @@ interactions: - HEAD, GET, OPTIONS, POST, PUT, DELETE Access-Control-Allow-Origin: - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "92" Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:18:03 GMT + Pragma: + - no-cache Vary: - Authorization, X-Filter X-Accepted-Oauth-Scopes: @@ -547,7 +625,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" status: 503 Service Unavailable code: 503 duration: "" @@ -561,7 +639,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76167/kubeconfig + url: https://api.linode.com/v4beta/lke/clusters/196078/kubeconfig method: GET response: body: '{"errors": [{"reason": "Cluster kubeconfig is not yet available. Please @@ -573,12 +651,18 @@ interactions: - HEAD, GET, OPTIONS, POST, PUT, DELETE Access-Control-Allow-Origin: - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "92" Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:18:18 GMT + Pragma: + - no-cache Vary: - Authorization, X-Filter X-Accepted-Oauth-Scopes: @@ -588,7 +672,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" status: 503 Service Unavailable code: 503 duration: "" @@ -602,10 +686,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76167/kubeconfig + url: https://api.linode.com/v4beta/lke/clusters/196078/kubeconfig method: GET response: - body: '{"kubeconfig": "CmFwaVZlcnNpb246IHYxCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KCmNsdXN0ZXJzOgotIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTXZha05EUVdWaFowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZVUxVVFYaE5la1V5VFZSUk1VMVdiMWhFVkUxNVRWUkJlRTFFUlRKTlZGRXhUVlp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlMzUkRDa0p4WW1oeVVFdENlbUZQY0dvdlJubFZPRGRRVnpWTE5VTnZWSFZzYkZaVVFUbERhVFJVVm1kWWVuTnhXbVE0T0dscFVGbEVlRWRUVEhobFZEaFpjRFlLTTB0aGNrMW5TVGxrTmpCUWExbGlVemxrWVZwVE5EVkVNVGhpY2pCUFJXdDJjVzluWTJ0QmVUWjJibGt2VVM5S2FXWlpWamwxZG5SeVdtNVVPRlZoU2dwTWRFdFZOV3B2VDFaUmFuQnBiV1ZIUVRKR2Jsa3JjMVJyTTFrM1VYaHhVWFJHUVZONGJFNVBLemg1Tm5WTWJIbGhVV2N5V0hWMk5scEdjMU40UW5RekNsSXdkMmRpZGtWaVVrNXJOV28zYzNoa1lUVmxUV1J0UjFoQ1EyRlBRMXBOVUhRd2JIUnBjbTlJYmtRNU9ESkRSVFpqTURKWE9UbHhLMlpGWWs1a1oxQUtkRFJ1VUVKTmFIVTBRa3cxYm1sd1VGRmxRVE5DZVVwUlkwRklZMjVQVmpGRE1sSnpMMDFITW5BMGJsWTNRMGxqWm1nelpISktTVVI2ZERGTlpuSmpWUXBYWkhSbFRWUTJTazVKTjA5WmVtcFlhV3ByUTBGM1JVRkJZVTVhVFVaamQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpEWm1GM00ydDFRVXhxWW10S1EzUnpRVVF3Ulhock1qSm9hR2ROUWxWSFFURlZaRVZSVVU4S1RVRjVRME50ZERGWmJWWjVZbTFXTUZwWVRYZEVVVmxLUzI5YVNXaDJZMDVCVVVWTVFsRkJSR2RuUlVKQlJFMVROR1pEVVU1emVrNUhTMlEzU0hoVlR3cGtiemN4VkZONFMzYzVaM1JNS3pOSlF6bExWMXBCTlVoT2EzVlBXSE5MYnpkd1RHSTNhbkJCWWtwc1NFaFNkRTQxVkZoamJUSXlMemRrTWprNE5HRkZDbkpLTW10VWNraHlRbTEyYjB3MWEwY3pkMGMzYkRSTFltSnBSVFYwYWtZelNYZHVORkJYYlRsd1FYUlJNM1UwTjA5SlFWVjNaazF0Y0haRlYydFpXbG9LTmxvMloycGxkMDlNUW5CdmQyZEhja1pXUmpkSFRXbHlNRk53TkRKMWJpOUtPSEpFVUZvMVNtdHlZMEphUTNOT05GcHBiVFZ2ZVdOVk9XdHVNRkYyUmdwalJ6QjJkRFJSUzBKUVRtc3haM0p1UlZSWmVGcDZUMk0xY0VSa1RFbFdNbWhCYVRWUmJEQklia1pwU1N0aE1XczNhR3A2Umk5TlEzZE5aRzFFUm5rNENuQnJXa2htYTBwWFVVb3JSWEI1UkV0c2JXTlJWMVJRWVZkUGVFVjZXRlpJYzBobGNuTjRaMEowUkcxRVptSm5la0Z0TVhWM1QyTnVlbE5XTUV0RWNra0tWa2hOUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzRjYmY4MmI2LTUwYTQtNGI4Ny1iMTkwLWZjOTQ0ZjRmNDFlMy5hcC13ZXN0LTIubGlub2RlbGtlLm5ldDo0NDMKICBuYW1lOiBsa2U3NjE2NwoKdXNlcnM6Ci0gbmFtZTogbGtlNzYxNjctYWRtaW4KICB1c2VyOgogICAgYXMtdXNlci1leHRyYToge30KICAgIHRva2VuOiBleUpoYkdjaU9pSlNVekkxTmlJc0ltdHBaQ0k2SWpsSFpYcE5iMWhuZVY5SWRHWm5VM2hsYkRoTWFGRTNYelpEUVhCTGFqTnBVMmRLUTBrd09FUnZUVVVpZlEuZXlKcGMzTWlPaUpyZFdKbGNtNWxkR1Z6TDNObGNuWnBZMlZoWTJOdmRXNTBJaXdpYTNWaVpYSnVaWFJsY3k1cGJ5OXpaWEoyYVdObFlXTmpiM1Z1ZEM5dVlXMWxjM0JoWTJVaU9pSnJkV0psTFhONWMzUmxiU0lzSW10MVltVnlibVYwWlhNdWFXOHZjMlZ5ZG1salpXRmpZMjkxYm5RdmMyVmpjbVYwTG01aGJXVWlPaUpzYTJVdFlXUnRhVzR0ZEc5clpXNHRlbTR5Y21naUxDSnJkV0psY201bGRHVnpMbWx2TDNObGNuWnBZMlZoWTJOdmRXNTBMM05sY25acFkyVXRZV05qYjNWdWRDNXVZVzFsSWpvaWJHdGxMV0ZrYldsdUlpd2lhM1ZpWlhKdVpYUmxjeTVwYnk5elpYSjJhV05sWVdOamIzVnVkQzl6WlhKMmFXTmxMV0ZqWTI5MWJuUXVkV2xrSWpvaU9XSXpNelk0TnpFdE9UZ3lOUzAwTUdRMUxXRmhOakl0TUdabVlqTmxZVEZsT0RBd0lpd2ljM1ZpSWpvaWMzbHpkR1Z0T25ObGNuWnBZMlZoWTJOdmRXNTBPbXQxWW1VdGMzbHpkR1Z0T214clpTMWhaRzFwYmlKOS5mOHhIb1BoQmp1b1lwcDg1dmRybXplVzVFNlhqX05TcTluMk5zZUZmYVJJOHF1cEg5bXQxM01zcDlhY25ZMXhNc3NOcHhUa245Q1hSQTN5dlloa1AtZ09GRU1MeWRkMEJ3R3RfdmtpV3cwUzA2bmh0aG1uUk5UbDEzLXhJT19nYVZUV3RFVUliUTZaeU11dVRTQmkzYVJQb3dxR3oyeDdfVFdDNEFTeHdiXzBaVTM0NkpQVEd6LXkyWDhjVmZzem1PbWtZd0V5cFczZ2E2R1Mtdkl4cVctWk1IUVpzT3pEUjhLZ1ItWUtPQnJScGVtN3FFYVZmTmo0dVRwUG8xLWRLNkFPaDhQR2dLQm5SWk5PSEdlZUQ1VmVHczQteS1PWm5NX1h2cFY2alVYRTlqWldyZHhuc2pQaDNUbjF2eFZHZ3pwZl92ZmpiZmNKREx4bUlRNTB4V1EKCmNvbnRleHRzOgotIGNvbnRleHQ6CiAgICBjbHVzdGVyOiBsa2U3NjE2NwogICAgbmFtZXNwYWNlOiBkZWZhdWx0CiAgICB1c2VyOiBsa2U3NjE2Ny1hZG1pbgogIG5hbWU6IGxrZTc2MTY3LWN0eAoKY3VycmVudC1jb250ZXh0OiBsa2U3NjE2Ny1jdHgK"}' + body: '{"kubeconfig": "CmFwaVZlcnNpb246IHYxCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KCmNsdXN0ZXJzOgotIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVUkNWRU5EUVdVeVowRjNTVUpCWjBsSllVNXljbWRHUTNWMldUQjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGRHVkVWVVRVSkZSMEV4VlVVS1FYaE5TMkV6Vm1sYVdFcDFXbGhTYkdONlFXVkdkekI1VGtSQk0wMUVSWGhQUkVWNVRXcHNZVVozTUhwT1JFRXlUV3ByZUU5RVJUTk5hbXhoVFVKVmVBcEZla0ZTUW1kT1ZrSkJUVlJEYlhReFdXMVdlV0p0VmpCYVdFMTNaMmRGYVUxQk1FZERVM0ZIVTBsaU0wUlJSVUpCVVZWQlFUUkpRa1IzUVhkblowVkxDa0Z2U1VKQlVVTjFZbUp6UmxvNVQxWmtjRWRZT0RaMGFYSmhNWGRIYzBOM1FtVkJOa0pIUnpoVVpUTnJSVkIxUW5BMFQyeDNZbFZXYjFCclIyUlJXVllLYmswclJXeHdiekk1TDFrMWVrcEJMM1ZOYTBvMVFVVlVWVkJwVVhrMmEzSXZTM2RNWWpWaFRtVndhREpZZW5veGVGZGthMWxqYkc5WGFtOW9OVVY1VXdvdmVsSkVUV2t3U3k5U2RYSlNTVk14YmpkT1VuUXZXbVZFVGxGNVYwUTViVTFoWXpNdlFVWmpVV2hPV1ZwVlpuQTNWM1J4TjFKemJFazFMMFJUV0ZkMkNua3pOVzVEZDJKMVUyZzRXVlJsVXpCV2VqQk9RVnB0U0RKRGVERXhZVmh1TjNrMVREQjZTM0ZOVFZoemIwRkxVV3hXUlU5Q1ZtcG9NSEZOWVdOS1oza0tOekl6V0drekwwWklaMGxEZG1KU1NTdHVaVVpxVDI1SVpURnRkWEl3V2xKa2RqaHFSVVZIV2pCTFNVRm9NbEEyYzI5cFRrZDFha3BMT1UwMFFWSTBSd3BFVEVkQlNVUlNiRlp3VVd4ak4xbFVkVzV3V0VSV1oxVm5ORlZLUVdkTlFrRkJSMnBYVkVKWVRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRQ2tKblRsWklVazFDUVdZNFJVSlVRVVJCVVVndlRVSXdSMEV4VldSRVoxRlhRa0pTVEVSUmVsbGxkVmhxWlRKblRHaHFNVXcwVlhsd05WcHFWMjFxUVZZS1FtZE9Wa2hTUlVWRWFrRk5aMmR3Y21SWFNteGpiVFZzWkVkV2VrMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUWtGUlEwVkpjVU5NUTJkelpRcFJSVTAwVEVKUlVsTk1WelE1VDJncmFGQk5kSFpHT1V0WE4xZHFaemRuU1hSR1pEaDFZa0ZUT1dkb05GZzJjbEJtYWpCMEwxZEJUbWxTTTI5WFRXcDNDalYzYUhOMVEwSlhVemhJV1dob1ZFRk9iRnBHVEhOeGRrc3dWM1J0ZFhONFZVMWFZMWhpTUdwa2JXRnlSVEV2ZVc5c2NHOVJNazhyYUU0eWVUUTRkMDRLVm05c05tNTFkRXhZZW5oQldqTmhabGxzWVdaaWRXMVlVa0UyTVN0c1J6Vm5PSEptU21SRFYzbE1hek14ZDJsM01WZDZkV3BGZGxrMmRHdDJWRFZJZGdwMVkzSTVNU3R1VDI5b0sxZzRNR2RIVGpKaWRsWm9PWEVyZW10RVpIQkVUVlY1ZEZOTU1ua3JTa2xCWlVsNU9YUnlSRTlNV2pWVWRqSkNNR3BxTmxsckNsRkxTM1Y2ZEd4clVXRm9PRWRKY21wR2J6SXZkVGhCVTFsTlUzRXlNV1pwTml0RVVuQXlTMlYzVWtwelFrTlZibkJ6Y1VkMWRFNXZURXRXTlZoRmFFVUtkMlJ6TjFwTk5FOXdVelpMQ2kwdExTMHRSVTVFSUVORlVsUkpSa2xEUVZSRkxTMHRMUzBLCiAgICBzZXJ2ZXI6IGh0dHBzOi8vMmVlNDAyY2QtYWIwYS00NjBiLThkMGMtNDlmNTJjMDNkODUyLmFwLXdlc3QtMi5saW5vZGVsa2UubmV0OjQ0MwogIG5hbWU6IGxrZTE5NjA3OAoKdXNlcnM6Ci0gbmFtZTogbGtlMTk2MDc4LWFkbWluCiAgdXNlcjoKICAgIGFzLXVzZXItZXh0cmE6IHt9CiAgICB0b2tlbjogZXlKaGJHY2lPaUpTVXpJMU5pSXNJbXRwWkNJNkltVkRkVlY0VUdaU1RFNUNiRUpKTUc0MlRUVjBSME56TWs5bU5VcGhPV0pNYzA1Nk5GOTVTMnRRUVhNaWZRLmV5SnBjM01pT2lKcmRXSmxjbTVsZEdWekwzTmxjblpwWTJWaFkyTnZkVzUwSWl3aWEzVmlaWEp1WlhSbGN5NXBieTl6WlhKMmFXTmxZV05qYjNWdWRDOXVZVzFsYzNCaFkyVWlPaUpyZFdKbExYTjVjM1JsYlNJc0ltdDFZbVZ5Ym1WMFpYTXVhVzh2YzJWeWRtbGpaV0ZqWTI5MWJuUXZjMlZqY21WMExtNWhiV1VpT2lKc2EyVXRZV1J0YVc0dGRHOXJaVzR0ZURscU5YY2lMQ0pyZFdKbGNtNWxkR1Z6TG1sdkwzTmxjblpwWTJWaFkyTnZkVzUwTDNObGNuWnBZMlV0WVdOamIzVnVkQzV1WVcxbElqb2liR3RsTFdGa2JXbHVJaXdpYTNWaVpYSnVaWFJsY3k1cGJ5OXpaWEoyYVdObFlXTmpiM1Z1ZEM5elpYSjJhV05sTFdGalkyOTFiblF1ZFdsa0lqb2lPREJoTnpreU5qTXRPR1F5TkMwME1HTmpMV0ZtTURjdE9HUmhOekk1TXpCalptTmlJaXdpYzNWaUlqb2ljM2x6ZEdWdE9uTmxjblpwWTJWaFkyTnZkVzUwT210MVltVXRjM2x6ZEdWdE9teHJaUzFoWkcxcGJpSjkuTUJ4anlDTUdET3E1V3RBSlp6SEhzZ2Q5dWxZM0NlYkRfTXZHYnZCOG5QLWVaVDFQUklJOVJyaVNBNVI3U05zb1RnZVRRcXFyT2RUTGtjX1ljMnh6Zkt1Q0UxeU5BSlU2WU44VWNaZ2ducjhnM3lhbjMxWG1FN0lLdEtvUllBUmY1WHJsMWMwaE1JdnBkaXVTSHp1Z0VSOUxpQVl0bDk4dTdFdXJ6RTQ5d1NzMFd4d2RTcE5FZndwOWMzbWdraXlfSU1MbF92MXFQdExmTklGMndxa0J4UFpYajFEQjljanppQTBwUnZ6VWEzVlkyUHdLb1lJNFRJcTVLck1lQlkwQU9WSU1GRU5TVnFWamJLeEtGbXZxQklnREdLYy0zMnpNQ3VUZGhfQzFfZ29Eb0h1azlKMm9IaFZheGZNdEpzZWZLOXJfeUJpNW5RemF6LXU0YS1NcjNRCgpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogbGtlMTk2MDc4CiAgICBuYW1lc3BhY2U6IGRlZmF1bHQKICAgIHVzZXI6IGxrZTE5NjA3OC1hZG1pbgogIG5hbWU6IGxrZTE5NjA3OC1jdHgKCmN1cnJlbnQtY29udGV4dDogbGtlMTk2MDc4LWN0eAo="}' headers: Access-Control-Allow-Credentials: - "true" @@ -618,19 +702,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, 01 Jul 2024 18:18:35 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - Authorization, X-Filter + - Accept-Encoding X-Accepted-Oauth-Scopes: - lke:read_write X-Content-Type-Options: @@ -641,7 +729,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -657,7 +745,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76167 + url: https://api.linode.com/v4beta/lke/clusters/196078 method: DELETE response: body: '{}' @@ -673,15 +761,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, 01 Jul 2024 18:18:39 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -696,7 +788,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/TestLKECluster_Nodes_Recycle.yaml b/test/integration/fixtures/TestLKECluster_Nodes_Recycle.yaml index 15ff5b339..01236c769 100644 --- a/test/integration/fixtures/TestLKECluster_Nodes_Recycle.yaml +++ b/test/integration/fixtures/TestLKECluster_Nodes_Recycle.yaml @@ -14,56 +14,263 @@ interactions: url: https://api.linode.com/v4beta/regions method: GET response: - body: '{"data": [{"id": "ap-west", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ca-central", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ap-southeast", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-central", "country": "us", "capabilities": ["Linodes", "NodeBalancers", - "Block Storage", "Kubernetes", "Cloud Firewall", "Block Storage Migrations", - "Managed Databases"], "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", "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", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", + "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", + "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5, + 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5, + 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5, + 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5, + 172.105.11.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5, + 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, + 172.105.161.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium + Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, + 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, + 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", + "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status": + "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, + 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label": + "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-east", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status": + "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18, + 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label": + "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Bare Metal", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "eu-west", "country": "uk", "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", "country": "sg", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, + 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label": + "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, + 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country": + "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38, + 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30, + 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22, + 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21, + 172.232.128.27", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25, + 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18, + 172.233.111.9", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20, + 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label": + "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "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", "country": "de", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46, + 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label": + "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24, + 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label": + "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32, + 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label": + "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21, + 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label": + "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34, + 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label": + "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50, + 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51, + 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32, + 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central", + "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5, + 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, + 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, + 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5, + 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::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"], "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", "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": 11}' + "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"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU + Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5, + 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5, + 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast", + "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5, + 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}], "page": 1, "pages": 1, "results": 27}' headers: Access-Control-Allow-Credentials: - "true" @@ -76,19 +283,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, 01 Jul 2024 18:16:48 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: @@ -99,14 +310,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-lke-test-recycle","region":"ap-west","k8s_version":"1.23","tags":["testing"]}' + body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-lke-test-recycle","region":"ap-west","k8s_version":"1.29","tags":["testing"]}' form: {} headers: Accept: @@ -118,9 +329,9 @@ interactions: url: https://api.linode.com/v4beta/lke/clusters method: POST response: - body: '{"id": 76165, "status": "ready", "created": "2018-01-02T03:04:05", "updated": + body: '{"id": 196076, "status": "ready", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "label": "go-lke-test-recycle", "region": "ap-west", - "k8s_version": "1.23", "control_plane": {"high_availability": false}, "tags": + "k8s_version": "1.29", "control_plane": {"high_availability": false}, "tags": ["testing"]}' headers: Access-Control-Allow-Credentials: @@ -134,15 +345,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: - - "244" + - "245" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:16:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -157,7 +372,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -173,7 +388,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76165/recycle + url: https://api.linode.com/v4beta/lke/clusters/196076/recycle method: POST response: body: '{}' @@ -189,15 +404,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, 01 Jul 2024 18:17:00 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -212,7 +431,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -228,7 +447,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76165 + url: https://api.linode.com/v4beta/lke/clusters/196076 method: DELETE response: body: '{}' @@ -244,15 +463,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, 01 Jul 2024 18:17:03 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -267,7 +490,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/TestLKECluster_Update.yaml b/test/integration/fixtures/TestLKECluster_Update.yaml index b61053636..85eea7d5b 100644 --- a/test/integration/fixtures/TestLKECluster_Update.yaml +++ b/test/integration/fixtures/TestLKECluster_Update.yaml @@ -14,56 +14,263 @@ interactions: url: https://api.linode.com/v4beta/regions method: GET response: - body: '{"data": [{"id": "ap-west", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ca-central", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ap-southeast", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-central", "country": "us", "capabilities": ["Linodes", "NodeBalancers", - "Block Storage", "Kubernetes", "Cloud Firewall", "Block Storage Migrations", - "Managed Databases"], "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", "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", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", + "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", + "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5, + 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5, + 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5, + 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5, + 172.105.11.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5, + 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, + 172.105.161.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium + Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, + 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, + 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", + "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status": + "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, + 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label": + "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-east", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status": + "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18, + 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label": + "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Bare Metal", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "eu-west", "country": "uk", "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", "country": "sg", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, + 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label": + "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, + 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country": + "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38, + 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30, + 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22, + 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21, + 172.232.128.27", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25, + 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18, + 172.233.111.9", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20, + 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label": + "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "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", "country": "de", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46, + 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label": + "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24, + 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label": + "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32, + 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label": + "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21, + 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label": + "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34, + 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label": + "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50, + 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51, + 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32, + 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central", + "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5, + 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, + 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, + 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5, + 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::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"], "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", "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": 11}' + "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"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU + Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5, + 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5, + 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast", + "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5, + 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}], "page": 1, "pages": 1, "results": 27}' headers: Access-Control-Allow-Credentials: - "true" @@ -76,19 +283,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, 01 Jul 2024 18:23:14 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - Authorization, X-Filter + - Accept-Encoding X-Accepted-Oauth-Scopes: - '*' X-Content-Type-Options: @@ -99,14 +310,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-lke-test-update","region":"ap-west","k8s_version":"1.23","tags":["testing"]}' + body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-lke-test-update","region":"ap-west","k8s_version":"1.29","tags":["testing"]}' form: {} headers: Accept: @@ -118,9 +329,9 @@ interactions: url: https://api.linode.com/v4beta/lke/clusters method: POST response: - body: '{"id": 76164, "status": "ready", "created": "2018-01-02T03:04:05", "updated": + body: '{"id": 196083, "status": "ready", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "label": "go-lke-test-update", "region": "ap-west", "k8s_version": - "1.23", "control_plane": {"high_availability": false}, "tags": ["testing"]}' + "1.29", "control_plane": {"high_availability": false}, "tags": ["testing"]}' headers: Access-Control-Allow-Credentials: - "true" @@ -133,15 +344,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: - - "243" + - "244" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:23:25 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -156,14 +371,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: '{"k8s_version":"1.23","label":"go-lke-test-update-updated","tags":["test=true"],"control_plane":{"high_availability":true}}' + body: '{"k8s_version":"1.30","label":"go-lke-test-update-updated","tags":["test=true"],"control_plane":{"high_availability":false}}' form: {} headers: Accept: @@ -172,12 +387,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76164 + url: https://api.linode.com/v4beta/lke/clusters/196083 method: PUT response: - body: '{"id": 76164, "status": "ready", "created": "2018-01-02T03:04:05", "updated": + body: '{"id": 196083, "status": "ready", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "label": "go-lke-test-update-updated", "region": "ap-west", - "k8s_version": "1.23", "control_plane": {"high_availability": true}, "tags": + "k8s_version": "1.30", "control_plane": {"high_availability": false}, "tags": ["test=true"]}' headers: Access-Control-Allow-Credentials: @@ -191,15 +406,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: - - "252" + - "254" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:23:27 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -214,7 +433,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -230,7 +449,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76164 + url: https://api.linode.com/v4beta/lke/clusters/196083 method: DELETE response: body: '{}' @@ -246,15 +465,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, 01 Jul 2024 18:23:31 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,7 +492,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/TestLKECluster_WaitForReady.yaml b/test/integration/fixtures/TestLKECluster_WaitForReady.yaml index e3e6c0af3..4680f659f 100644 --- a/test/integration/fixtures/TestLKECluster_WaitForReady.yaml +++ b/test/integration/fixtures/TestLKECluster_WaitForReady.yaml @@ -14,56 +14,263 @@ interactions: url: https://api.linode.com/v4beta/regions method: GET response: - body: '{"data": [{"id": "ap-west", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ca-central", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ap-southeast", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-central", "country": "us", "capabilities": ["Linodes", "NodeBalancers", - "Block Storage", "Kubernetes", "Cloud Firewall", "Block Storage Migrations", - "Managed Databases"], "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", "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", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", + "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", + "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5, + 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5, + 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5, + 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5, + 172.105.11.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5, + 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, + 172.105.161.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium + Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, + 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, + 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", + "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status": + "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, + 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label": + "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-east", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status": + "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18, + 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label": + "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Bare Metal", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "eu-west", "country": "uk", "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", "country": "sg", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, + 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label": + "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, + 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country": + "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38, + 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30, + 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22, + 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21, + 172.232.128.27", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25, + 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18, + 172.233.111.9", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20, + 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label": + "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "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", "country": "de", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46, + 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label": + "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24, + 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label": + "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32, + 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label": + "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21, + 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label": + "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34, + 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label": + "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50, + 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51, + 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32, + 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central", + "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5, + 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, + 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, + 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5, + 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::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"], "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", "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": 11}' + "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"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU + Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5, + 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5, + 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast", + "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5, + 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}], "page": 1, "pages": 1, "results": 27}' headers: Access-Control-Allow-Credentials: - "true" @@ -76,19 +283,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, 01 Jul 2024 18:13:35 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: @@ -99,14 +310,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: '{"node_pools":[{"count":3,"type":"g6-standard-2","disks":null,"tags":null}],"label":"go-lke-test-wait","region":"ap-west","k8s_version":"1.23","tags":["testing"]}' + body: '{"node_pools":[{"count":3,"type":"g6-standard-2","disks":null,"tags":null}],"label":"go-lke-test-wait","region":"ap-west","k8s_version":"1.29","tags":["testing"]}' form: {} headers: Accept: @@ -118,9 +329,9 @@ interactions: url: https://api.linode.com/v4beta/lke/clusters method: POST response: - body: '{"id": 76162, "status": "ready", "created": "2018-01-02T03:04:05", "updated": + body: '{"id": 196072, "status": "ready", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "label": "go-lke-test-wait", "region": "ap-west", "k8s_version": - "1.23", "control_plane": {"high_availability": false}, "tags": ["testing"]}' + "1.29", "control_plane": {"high_availability": false}, "tags": ["testing"]}' headers: Access-Control-Allow-Credentials: - "true" @@ -133,15 +344,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: - - "241" + - "242" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:13:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -156,7 +371,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -172,130 +387,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76162/kubeconfig - method: GET - response: - body: '{"errors": [{"reason": "Cluster kubeconfig is not yet available. Please - try again later."}]}' - headers: - Access-Control-Allow-Headers: - - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter - Access-Control-Allow-Methods: - - HEAD, GET, OPTIONS, POST, PUT, DELETE - Access-Control-Allow-Origin: - - '*' - Content-Length: - - "92" - Content-Type: - - application/json - Server: - - nginx - Vary: - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - lke:read_write - X-Frame-Options: - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "800" - status: 503 Service Unavailable - code: 503 - duration: "" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76162/kubeconfig - method: GET - response: - body: '{"errors": [{"reason": "Cluster kubeconfig is not yet available. Please - try again later."}]}' - headers: - Access-Control-Allow-Headers: - - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter - Access-Control-Allow-Methods: - - HEAD, GET, OPTIONS, POST, PUT, DELETE - Access-Control-Allow-Origin: - - '*' - Content-Length: - - "92" - Content-Type: - - application/json - Server: - - nginx - Vary: - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - lke:read_write - X-Frame-Options: - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "800" - status: 503 Service Unavailable - code: 503 - duration: "" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76162/kubeconfig - method: GET - response: - body: '{"errors": [{"reason": "Cluster kubeconfig is not yet available. Please - try again later."}]}' - headers: - Access-Control-Allow-Headers: - - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter - Access-Control-Allow-Methods: - - HEAD, GET, OPTIONS, POST, PUT, DELETE - Access-Control-Allow-Origin: - - '*' - Content-Length: - - "92" - Content-Type: - - application/json - Server: - - nginx - Vary: - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - lke:read_write - X-Frame-Options: - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "800" - status: 503 Service Unavailable - code: 503 - duration: "" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76162/kubeconfig + url: https://api.linode.com/v4beta/lke/clusters/196072/kubeconfig method: GET response: body: '{"errors": [{"reason": "Cluster kubeconfig is not yet available. Please @@ -307,12 +399,18 @@ interactions: - HEAD, GET, OPTIONS, POST, PUT, DELETE Access-Control-Allow-Origin: - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "92" Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:13:47 GMT + Pragma: + - no-cache Vary: - Authorization, X-Filter X-Accepted-Oauth-Scopes: @@ -322,7 +420,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" status: 503 Service Unavailable code: 503 duration: "" @@ -336,7 +434,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76162/kubeconfig + url: https://api.linode.com/v4beta/lke/clusters/196072/kubeconfig method: GET response: body: '{"errors": [{"reason": "Cluster kubeconfig is not yet available. Please @@ -348,12 +446,18 @@ interactions: - HEAD, GET, OPTIONS, POST, PUT, DELETE Access-Control-Allow-Origin: - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "92" Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:13:51 GMT + Pragma: + - no-cache Vary: - Authorization, X-Filter X-Accepted-Oauth-Scopes: @@ -363,7 +467,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" status: 503 Service Unavailable code: 503 duration: "" @@ -377,7 +481,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76162/kubeconfig + url: https://api.linode.com/v4beta/lke/clusters/196072/kubeconfig method: GET response: body: '{"errors": [{"reason": "Cluster kubeconfig is not yet available. Please @@ -389,12 +493,18 @@ interactions: - HEAD, GET, OPTIONS, POST, PUT, DELETE Access-Control-Allow-Origin: - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "92" Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:13:56 GMT + Pragma: + - no-cache Vary: - Authorization, X-Filter X-Accepted-Oauth-Scopes: @@ -404,7 +514,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" status: 503 Service Unavailable code: 503 duration: "" @@ -418,7 +528,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76162/kubeconfig + url: https://api.linode.com/v4beta/lke/clusters/196072/kubeconfig method: GET response: body: '{"errors": [{"reason": "Cluster kubeconfig is not yet available. Please @@ -430,12 +540,18 @@ interactions: - HEAD, GET, OPTIONS, POST, PUT, DELETE Access-Control-Allow-Origin: - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "92" Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:14:09 GMT + Pragma: + - no-cache Vary: - Authorization, X-Filter X-Accepted-Oauth-Scopes: @@ -445,7 +561,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" status: 503 Service Unavailable code: 503 duration: "" @@ -459,7 +575,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76162/kubeconfig + url: https://api.linode.com/v4beta/lke/clusters/196072/kubeconfig method: GET response: body: '{"errors": [{"reason": "Cluster kubeconfig is not yet available. Please @@ -471,12 +587,18 @@ interactions: - HEAD, GET, OPTIONS, POST, PUT, DELETE Access-Control-Allow-Origin: - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "92" Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:14:27 GMT + Pragma: + - no-cache Vary: - Authorization, X-Filter X-Accepted-Oauth-Scopes: @@ -486,7 +608,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" status: 503 Service Unavailable code: 503 duration: "" @@ -500,7 +622,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76162/kubeconfig + url: https://api.linode.com/v4beta/lke/clusters/196072/kubeconfig method: GET response: body: '{"errors": [{"reason": "Cluster kubeconfig is not yet available. Please @@ -512,12 +634,18 @@ interactions: - HEAD, GET, OPTIONS, POST, PUT, DELETE Access-Control-Allow-Origin: - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "92" Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:14:55 GMT + Pragma: + - no-cache Vary: - Authorization, X-Filter X-Accepted-Oauth-Scopes: @@ -527,7 +655,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" status: 503 Service Unavailable code: 503 duration: "" @@ -541,10 +669,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76162/kubeconfig + url: https://api.linode.com/v4beta/lke/clusters/196072/kubeconfig method: GET response: - body: '{"kubeconfig": "CmFwaVZlcnNpb246IHYxCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KCmNsdXN0ZXJzOgotIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTXZha05EUVdWaFowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZVUxVVFYaE5la1V5VFVSbmVrMUdiMWhFVkUxNVRWUkJlRTFFUlRKTlJHZDZUVVp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRuVm1Da1JXZVRaQmNsUTFXbnA0VDB4UFRtbENVVEZRUVRZMlRqaEVVbGRyU2t0cVUwZEVhRUZ1VkVoc2VXWm5RMmd6TW1SbGRrOWhjMjVUVldKc1QxZzNlVThLVTFWTFYzQjBVRVl4VUZsNmEwUnZWakZwT1U1YU5FMTFNRW8yV1RsbFYyRTBkMjF4VDJSdlF6aFVaMlV5YlVKVVVHSmhZM0ZyUWxoV2RuQk5SaTlMWXdvM1dXMUpOMUZwWjNaaWFtSmFkWFI1UVdjNU5WZzVZazlaT0VWVGVXOXlUMGxzVUdkemVsTkJUbHBrYzNKU1dITjNiVGQ1UjFKR1pHcGllVmRyZG1wQkNqRkhURzF6VldkeWVERjJTM1ZsWkRaSlNrUlVia1ZUUVhkWE5IbFJXa1JCZGxwb1oxYzBZU3RaTkRoUldtMURjblZYT1doQ1RIcEdhV0pIYVZWWWExY0tTWFo0YmpKSGVIZzNSRWx2Y0dkck5HOWpTMFJMYUVad2FEbFRSRlZ5YzBoNFJVWTRSR1pwWVdwYVZEbE1ORUo1WjJ4VlpGWjRjVklyVjJWdFVFSk1kUXBPVFVWSllVRkRWazlRTUVwaGRVTXhaQzlqUTBGM1JVRkJZVTVhVFVaamQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpOVVVFeVdsRXJSRVJwYTNkWWIwZDNiVkpqTkN0b1R6UllSM0pOUWxWSFFURlZaRVZSVVU4S1RVRjVRME50ZERGWmJWWjVZbTFXTUZwWVRYZEVVVmxLUzI5YVNXaDJZMDVCVVVWTVFsRkJSR2RuUlVKQlRHZHpaekpzU25ac2VqTnlZalUyT0ZsRUt3cFBkVlpKU0ZkV1IxTmhjemhRY1RWbWVVOHpSMGRIWWtreVpFTk1NQ3RQUVV4eGFWbExRWHBhYlZWeFRVVk9Talp2VVdselVYVkhWWG9yTjFKYVlsQnpDbE5IUW14T01ERnJVMGRzUXk5TmNVbENXR2hyY25WdWJsVkpXVGxWVmtKTVREaEtVRWhEUlhkd2J6RkVURGhqVjFSSU4xVlRVQzlqWjI5bGRIaFZjVm9LYjNGSVRUTlljRmhxY3prNWVVZFhTRzlEYjI1cVVrTmhiMFkzV1M4MlFVRnhkbWRXUkZwM2JUWlRSM1EyYm1odmNFcEVPVkJEVUZkMVppOTRkbU12UWdwRmJXTlVXVkpyU3pSTFJuVmFiVlZZZUZGbGVIUXljMGg2VmtWTGNIRnlWM05hVTNaeVkwZDRkbU4zVTA0MWF6WnNjRUZ3VjNSUFJ6a3dZMWxIY2s1eENtUm5URzExV1ZFMWNtOXVjbTl6VlVGaGRDOVpOR2QwVW5KQ01sUkhUMW81Y0VoNU9XNURNamxIVjJKclkwNWtLMmwwVkRKM2NWaGtaMEpTZWtOWmNuQUtjRW93UFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzE0NmQwZTI3LWNjM2YtNGMwOS1hNTBjLWExYjEzOGZhMDQzYi5hcC13ZXN0LTIubGlub2RlbGtlLm5ldDo0NDMKICBuYW1lOiBsa2U3NjE2MgoKdXNlcnM6Ci0gbmFtZTogbGtlNzYxNjItYWRtaW4KICB1c2VyOgogICAgYXMtdXNlci1leHRyYToge30KICAgIHRva2VuOiBleUpoYkdjaU9pSlNVekkxTmlJc0ltdHBaQ0k2SWpBM1ZWWXdYMVpUUVRFeVZtdE5OQzFZVW1aa0xWUnRMVlI1WlRWNlZqTXdTV1pqTTBJMGFVMTROVVVpZlEuZXlKcGMzTWlPaUpyZFdKbGNtNWxkR1Z6TDNObGNuWnBZMlZoWTJOdmRXNTBJaXdpYTNWaVpYSnVaWFJsY3k1cGJ5OXpaWEoyYVdObFlXTmpiM1Z1ZEM5dVlXMWxjM0JoWTJVaU9pSnJkV0psTFhONWMzUmxiU0lzSW10MVltVnlibVYwWlhNdWFXOHZjMlZ5ZG1salpXRmpZMjkxYm5RdmMyVmpjbVYwTG01aGJXVWlPaUpzYTJVdFlXUnRhVzR0ZEc5clpXNHRPVGxvYlRraUxDSnJkV0psY201bGRHVnpMbWx2TDNObGNuWnBZMlZoWTJOdmRXNTBMM05sY25acFkyVXRZV05qYjNWdWRDNXVZVzFsSWpvaWJHdGxMV0ZrYldsdUlpd2lhM1ZpWlhKdVpYUmxjeTVwYnk5elpYSjJhV05sWVdOamIzVnVkQzl6WlhKMmFXTmxMV0ZqWTI5MWJuUXVkV2xrSWpvaU5EVmhNak5oTkRndFpHVTFPQzAwWVdFMkxUbGpZVE10TXpabU9URXlOakV5WldFeElpd2ljM1ZpSWpvaWMzbHpkR1Z0T25ObGNuWnBZMlZoWTJOdmRXNTBPbXQxWW1VdGMzbHpkR1Z0T214clpTMWhaRzFwYmlKOS5DcDcxZlRCTlRVTUJOY2RINFk0RmtaZ2RRUV83dWktNlp2T2hYSU5KeWota3Jmb3VMZVNUdnl6d1ZTdDNTQlB3NmJYMmVrRVlWamRwb251TUREMnFyNmM4eTR6VWpkclpzdzR2TGd0WWJob1djN1V2YURlLWpMUjRhZ1p3RWlFem90ZDRNVVZEb1hfWEpVb2pTUV8yRWM4MTdlbktJSHVQMjFGdzloblpsNWUtY01HSUlBVTVqMzAxZ1B6cjFFVXJaSXVCTjJZRU1oNFVRcmlObVVtYTRRaFFzTDVlT1RlZG82SVBNa3o1MGdxc201STVZdFhReU1JTFQ4bjlpR3FWeFlZM0hqbENVRWVjSFdTNHVaVUhZc1B2OE1fVXdOSlBWdC1qcGVLYXdTNmMtMFBaX2w0Wm5ITHJibXBaTzktejQ5QzJmSW1vX0JFTmpEQ2N2T2FkT0EKCmNvbnRleHRzOgotIGNvbnRleHQ6CiAgICBjbHVzdGVyOiBsa2U3NjE2MgogICAgbmFtZXNwYWNlOiBkZWZhdWx0CiAgICB1c2VyOiBsa2U3NjE2Mi1hZG1pbgogIG5hbWU6IGxrZTc2MTYyLWN0eAoKY3VycmVudC1jb250ZXh0OiBsa2U3NjE2Mi1jdHgK"}' + body: '{"kubeconfig": "CmFwaVZlcnNpb246IHYxCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KCmNsdXN0ZXJzOgotIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVUkNWRU5EUVdVeVowRjNTVUpCWjBsSldIQnhUSFpsYldoUmFHdDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGRHVkVWVVRVSkZSMEV4VlVVS1FYaE5TMkV6Vm1sYVdFcDFXbGhTYkdONlFXVkdkekI1VGtSQk0wMUVSWGhQUkVFMFRrUldZVVozTUhwT1JFRXlUV3ByZUU5RVJYcE9SRlpoVFVKVmVBcEZla0ZTUW1kT1ZrSkJUVlJEYlhReFdXMVdlV0p0VmpCYVdFMTNaMmRGYVUxQk1FZERVM0ZIVTBsaU0wUlJSVUpCVVZWQlFUUkpRa1IzUVhkblowVkxDa0Z2U1VKQlVVUk5TelpHYTBJM00yRTBZVmRYWVdsV1ZqQlpWbXhDY25KVlRWaHZaM1Y2VHk5cldWRklURkp1UWtoVk9WVldXSE5XUkM5NU1GTkhPV0VLTWxaTVZuVkJaek4yUlRaVmQwcEpURlpaTVROcWRtb3pUMVpTU1M5Uk1UWkNTM2haZG1aTVozbFhRazFNU0U1SVpYWkdNRkJEUzJ3d2QwNUJRbVJpZEFwTVVERlFOalJsY1RodlN6WjRSRFJXY2pWR1FqTkZjRFF4Y21WT1ltRlJlWEZ0UldKdGRESnBZa2x3Uldkc1RqTjVRWHBSU1Uwek5HRlViUzlaYTFaMkNucExjM0J5T1c1NFEwSm9ZV1I2TlVKd1dsVkNUV3M0TkZGS0t5c3JiR3d4VkhCcGRXRldjMjVTTlVkSFpFeHhlSEIzVUdWcU16aFlRVWxzU205UWVGQUtTVGgyUlZwUWNIZEZkRE0yTW5semRtYzFhMk5FUWpGTlVuVmlOMjloVEZJNFNIaGtSVmxzY2tsbFdVTTVPRVZWYUROQlJuRm5UbGxtZWxFNU5IRllOQXBEYUd0WVRqWXJRMnhPT1RSSGFIWmliM2RKT0Rnd2FpdDRVMFo0UVdkTlFrRkJSMnBYVkVKWVRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRQ2tKblRsWklVazFDUVdZNFJVSlVRVVJCVVVndlRVSXdSMEV4VldSRVoxRlhRa0pSUVRSMU5ETXhjVzFqZW5SeldHZERlRTlqVWpsdGVUUkdiMHhVUVZZS1FtZE9Wa2hTUlVWRWFrRk5aMmR3Y21SWFNteGpiVFZzWkVkV2VrMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUWtGUlFsWnRVbUY2VXlzNE5ncElWMDE0YXpod1Nra3JSM3AyVkdoaFRISnlOMnhrVjBwYVpFcExaSEJZZVV0dU9VNWtOWFV4T1dJMWJFVXdiMVZaU2sxRFpVWlNNR3hqWmsxQ1JGcElDbW94UldoMU5EQndkVWxUVldsYVRsQmFaVGMyVVhSTGQxbFdWRUZqT0VSdE5EVTJUWFp4U1hoeWJTdFhNM1U1WjFGbVkzUmlNMGhsUTBsU01URkZTRVVLSzFsU1JucEViM0JUVTFwQ1dYcDZMeXRpUlVKblZ5c3daamg2UlVGR1JWUnJVVFZ4VlRaR1VuRm9SazUyTTI4MmIxTlRWSFl6WWxkQk1qUjJhMkozU1FwTU0yUXdUWGQwUWpBM2NHOWtibTlDZUZGRE1XcG9WM04yY3pac1ZtMUNkVUp6TUdaVlNGSlNWbUZaZHpoMU4wRmFWMVZpZVZabWJYaExXakpOZEhSeENsWm9TbVZaYm1SMmRYZEdSbXREUkhNMVRHVk5VSGh4TkRSa2NDOUxWRzUwTlZGSWVqZ3hVbGN6VWs1dmJGQXdMMWQ0YmpaMk1sazFaM0kxVG0xNE9Xc0tNbW81YUZaWlF6RTNOemwxQ2kwdExTMHRSVTVFSUVORlVsUkpSa2xEUVZSRkxTMHRMUzBLCiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2YwYjA1MDAtYmU1Ny00NjU1LWE2MmMtMjM4MzM5ZjA4YWI5LmFwLXdlc3QtMi5saW5vZGVsa2UubmV0OjQ0MwogIG5hbWU6IGxrZTE5NjA3MgoKdXNlcnM6Ci0gbmFtZTogbGtlMTk2MDcyLWFkbWluCiAgdXNlcjoKICAgIGFzLXVzZXItZXh0cmE6IHt9CiAgICB0b2tlbjogZXlKaGJHY2lPaUpTVXpJMU5pSXNJbXRwWkNJNklpMVhVbkJ5YTFKS1RIcHFhWEY1ZFRkT1JuVnBRbGMxYWtSS1RqQlZUVTk2YkdwRlQzVm9aMVV0YVRnaWZRLmV5SnBjM01pT2lKcmRXSmxjbTVsZEdWekwzTmxjblpwWTJWaFkyTnZkVzUwSWl3aWEzVmlaWEp1WlhSbGN5NXBieTl6WlhKMmFXTmxZV05qYjNWdWRDOXVZVzFsYzNCaFkyVWlPaUpyZFdKbExYTjVjM1JsYlNJc0ltdDFZbVZ5Ym1WMFpYTXVhVzh2YzJWeWRtbGpaV0ZqWTI5MWJuUXZjMlZqY21WMExtNWhiV1VpT2lKc2EyVXRZV1J0YVc0dGRHOXJaVzR0WjNkamREY2lMQ0pyZFdKbGNtNWxkR1Z6TG1sdkwzTmxjblpwWTJWaFkyTnZkVzUwTDNObGNuWnBZMlV0WVdOamIzVnVkQzV1WVcxbElqb2liR3RsTFdGa2JXbHVJaXdpYTNWaVpYSnVaWFJsY3k1cGJ5OXpaWEoyYVdObFlXTmpiM1Z1ZEM5elpYSjJhV05sTFdGalkyOTFiblF1ZFdsa0lqb2lObVZsTVdRNVlqTXROR1UxWVMwME1tUmtMVGhrTW1FdFpEWmtNbVUwT0RaaE16VTNJaXdpYzNWaUlqb2ljM2x6ZEdWdE9uTmxjblpwWTJWaFkyTnZkVzUwT210MVltVXRjM2x6ZEdWdE9teHJaUzFoWkcxcGJpSjkuQjBTbFZyT0NZSl9ROUVnVktseExrOTA5WDZxeWZpVzQ2RnpTWFV3bGp4YUU0cmhHeTZmeVhIVWRXdVUxRmpIamhNcDFlSmdjN1ktRHc3cGVhT0NDb0d2Z2lrSnBlX1dTSHpLSnZfZ1lUdVN0X0FzZzRhRTQwaXpoWWpEUmYxZmQxZXdnSml1S1BJbEZRNHNIckd0U1M4TzZyaWRWOUdIZXhjT3phMzlyUHB3cHl0bnJBUUU2cjhZd29FZjNINm9iMlVXdnJ6a0paOFhMSU5MQWEzTEFYT0dqNmFCdDRiNjdFUV9rVlZqV2FZMENMenNCMlBLTE5kZkFBcGhmekZXQmxMWFVyWUZRNWpJVTVsaW1oZGJnYjNqN19nS3NvU3RJYjRhTHA3ZV9VUUNaWnV3TzBJMXd4NnZuNFJUd1dwekc0UV9lb0NiR2dFVEhTZUt2NmE5eFVnCgpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogbGtlMTk2MDcyCiAgICBuYW1lc3BhY2U6IGRlZmF1bHQKICAgIHVzZXI6IGxrZTE5NjA3Mi1hZG1pbgogIG5hbWU6IGxrZTE5NjA3Mi1jdHgKCmN1cnJlbnQtY29udGV4dDogbGtlMTk2MDcyLWN0eAo="}' headers: Access-Control-Allow-Credentials: - "true" @@ -557,19 +685,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, 01 Jul 2024 18:15:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - Authorization, X-Filter + - Accept-Encoding X-Accepted-Oauth-Scopes: - lke:read_write X-Content-Type-Options: @@ -580,7 +712,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -596,7 +728,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76162 + url: https://api.linode.com/v4beta/lke/clusters/196072 method: DELETE response: body: '{}' @@ -612,15 +744,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, 01 Jul 2024 18:16:15 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -635,7 +771,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/TestLKECluster_WaitForReady_Cluster.yaml b/test/integration/fixtures/TestLKECluster_WaitForReady_Cluster.yaml index d44c8c708..3082a3054 100644 --- a/test/integration/fixtures/TestLKECluster_WaitForReady_Cluster.yaml +++ b/test/integration/fixtures/TestLKECluster_WaitForReady_Cluster.yaml @@ -7,14 +7,16 @@ interactions: headers: Accept: - application/json, */* - url: https://146d0e27-cc3f-4c09-a50c-a1b138fa043b.ap-west-2.linodelke.net:443/api/v1/nodes + User-Agent: + - integration.test/v0.0.0 (darwin/arm64) kubernetes/$Format + url: https://cf0b0500-be57-4655-a62c-238339f08ab9.ap-west-2.linodelke.net:443/api/v1/nodes method: GET response: body: | - {"kind":"NodeList","apiVersion":"v1","metadata":{"resourceVersion":"530"},"items":[]} + {"kind":"NodeList","apiVersion":"v1","metadata":{"resourceVersion":"489"},"items":[]} headers: Audit-Id: - - 9fe3b0b9-6be8-4bc5-8fb5-a5de89ad0ad2 + - 97f2013a-a62e-4685-befe-2dc17fe33171 Cache-Control: - no-cache, private Content-Length: @@ -22,9 +24,9 @@ interactions: Content-Type: - application/json X-Kubernetes-Pf-Flowschema-Uid: - - 89083a2b-4ffe-48eb-ba1a-e2ca012cadd7 + - 6d424735-6880-45b5-ae44-504dcaaf697b X-Kubernetes-Pf-Prioritylevel-Uid: - - 3833eb11-2ae9-4b3a-991a-57858f5ff927 + - cb738b5a-e2af-4c4a-b18c-734cfdeda57b status: 200 OK code: 200 duration: "" @@ -34,76 +36,24 @@ interactions: headers: Accept: - application/json, */* - url: https://146d0e27-cc3f-4c09-a50c-a1b138fa043b.ap-west-2.linodelke.net:443/api/v1/nodes + User-Agent: + - integration.test/v0.0.0 (darwin/arm64) kubernetes/$Format + url: https://cf0b0500-be57-4655-a62c-238339f08ab9.ap-west-2.linodelke.net:443/api/v1/nodes method: GET response: body: | - {"kind":"NodeList","apiVersion":"v1","metadata":{"resourceVersion":"537"},"items":[]} + {"kind":"NodeList","apiVersion":"v1","metadata":{"resourceVersion":"669"},"items":[{"metadata":{"name":"lke196072-281826-119b2c4c0000","uid":"553ca7d3-92d5-4f7a-b3a2-d431fcc73451","resourceVersion":"623","creationTimestamp":"2018-01-02T03:04:05Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/instance-type":"g6-standard-2","beta.kubernetes.io/os":"linux","failure-domain.beta.kubernetes.io/region":"ap-west","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"lke196072-281826-119b2c4c0000","kubernetes.io/os":"linux","lke.linode.com/pool-id":"281826","node.k8s.linode.com/host-uuid":"d946738609b866787b882e81aabef414a072050a","node.kubernetes.io/instance-type":"g6-standard-2","topology.kubernetes.io/region":"ap-west"},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///run/containerd/containerd.sock","lke.linode.com/wgip":"172.31.0.1","lke.linode.com/wgpub":"rqkFBcvZrp4OEtYwJ+MGr5/L+ctKdSw5paZCRIqE3hA=","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:node.alpha.kubernetes.io/ttl":{}}},"f:spec":{"f:podCIDR":{},"f:podCIDRs":{".":{},"v:\"10.2.0.0/25\"":{}}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:volumes.kubernetes.io/controller-managed-attach-detach":{}},"f:labels":{".":{},"f:beta.kubernetes.io/arch":{},"f:beta.kubernetes.io/os":{},"f:kubernetes.io/arch":{},"f:kubernetes.io/hostname":{},"f:kubernetes.io/os":{}}}}},{"manager":"kubeadm","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:kubeadm.alpha.kubernetes.io/cri-socket":{}}}}},{"manager":"linode-cloud-controller-manager-linux","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:beta.kubernetes.io/instance-type":{},"f:failure-domain.beta.kubernetes.io/region":{},"f:node.k8s.linode.com/host-uuid":{},"f:node.kubernetes.io/instance-type":{},"f:topology.kubernetes.io/region":{}}},"f:spec":{"f:providerID":{},"f:taints":{}}}},{"manager":"linode-cloud-controller-manager-linux","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:addresses":{".":{},"k:{\"type\":\"ExternalIP\"}":{".":{},"f:address":{},"f:type":{}},"k:{\"type\":\"Hostname\"}":{".":{},"f:address":{},"f:type":{}},"k:{\"type\":\"InternalIP\"}":{".":{},"f:address":{},"f:type":{}}}}},"subresource":"status"},{"manager":"kubectl-annotate","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:lke.linode.com/wgip":{},"f:lke.linode.com/wgpub":{}}}}},{"manager":"kubectl-label","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:lke.linode.com/pool-id":{}}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:conditions":{"k:{\"type\":\"DiskPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"MemoryPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"PIDPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"Ready\"}":{"f:lastHeartbeatTime":{},"f:message":{}}}}},"subresource":"status"}]},"spec":{"podCIDR":"10.2.0.0/25","podCIDRs":["10.2.0.0/25"],"providerID":"linode://60898579","taints":[{"key":"lke.linode.com/labels-taints","value":"waiting","effect":"NoSchedule"},{"key":"node.kubernetes.io/not-ready","effect":"NoSchedule"}]},"status":{"capacity":{"cpu":"2","ephemeral-storage":"82486728Ki","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"4022056Ki","pods":"110"},"allocatable":{"cpu":"2","ephemeral-storage":"76019768399","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"3919656Ki","pods":"110"},"conditions":[{"type":"MemoryPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientMemory","message":"kubelet has sufficient memory available"},{"type":"DiskPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasNoDiskPressure","message":"kubelet has no disk pressure"},{"type":"PIDPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientPID","message":"kubelet has sufficient PID available"},{"type":"Ready","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletNotReady","message":"container runtime network not ready: NetworkReady=false reason:NetworkPluginNotReady message:Network plugin returns error: cni plugin not initialized"}],"addresses":[{"type":"Hostname","address":"lke196072-281826-119b2c4c0000"},{"type":"ExternalIP","address":"172.105.48.78"},{"type":"InternalIP","address":"192.168.132.250"}],"daemonEndpoints":{"kubeletEndpoint":{"Port":10250}},"nodeInfo":{"machineID":"4ad4365cbfa648769bd6262c32a21efc","systemUUID":"4ad4365cbfa648769bd6262c32a21efc","bootID":"260c450f-a21b-44e1-9019-611e68ef7368","kernelVersion":"6.1.0-22-cloud-amd64","osImage":"Debian GNU/Linux 12 (bookworm)","containerRuntimeVersion":"containerd://1.7.18","kubeletVersion":"v1.29.2","kubeProxyVersion":"v1.29.2","operatingSystem":"linux","architecture":"amd64"}}},{"metadata":{"name":"lke196072-281826-3bf5899b0000","uid":"cf797837-6660-4c85-8261-84b931eaec4f","resourceVersion":"667","creationTimestamp":"2018-01-02T03:04:05Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/instance-type":"g6-standard-2","beta.kubernetes.io/os":"linux","failure-domain.beta.kubernetes.io/region":"ap-west","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"lke196072-281826-3bf5899b0000","kubernetes.io/os":"linux","lke.linode.com/pool-id":"281826","node.k8s.linode.com/host-uuid":"8c2590e9f86cd0e4ca885b2bd860211d7dbfd9e9","node.kubernetes.io/instance-type":"g6-standard-2","topology.kubernetes.io/region":"ap-west"},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///run/containerd/containerd.sock","lke.linode.com/wgip":"172.31.0.3","lke.linode.com/wgpub":"EEKdoARqIvGt80jIPdLkwviyULpLxAv2UXsUJi3I7zQ=","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:node.alpha.kubernetes.io/ttl":{}}},"f:spec":{"f:podCIDR":{},"f:podCIDRs":{".":{},"v:\"10.2.1.0/25\"":{}}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:volumes.kubernetes.io/controller-managed-attach-detach":{}},"f:labels":{".":{},"f:beta.kubernetes.io/arch":{},"f:beta.kubernetes.io/os":{},"f:kubernetes.io/arch":{},"f:kubernetes.io/hostname":{},"f:kubernetes.io/os":{}}}}},{"manager":"linode-cloud-controller-manager-linux","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:beta.kubernetes.io/instance-type":{},"f:failure-domain.beta.kubernetes.io/region":{},"f:node.k8s.linode.com/host-uuid":{},"f:node.kubernetes.io/instance-type":{},"f:topology.kubernetes.io/region":{}}},"f:spec":{"f:providerID":{}}}},{"manager":"linode-cloud-controller-manager-linux","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:addresses":{".":{},"k:{\"type\":\"ExternalIP\"}":{".":{},"f:address":{},"f:type":{}},"k:{\"type\":\"Hostname\"}":{".":{},"f:address":{},"f:type":{}},"k:{\"type\":\"InternalIP\"}":{".":{},"f:address":{},"f:type":{}}}}},"subresource":"status"},{"manager":"kubeadm","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:kubeadm.alpha.kubernetes.io/cri-socket":{}}}}},{"manager":"kubectl-annotate","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:lke.linode.com/wgip":{},"f:lke.linode.com/wgpub":{}}}}},{"manager":"kubectl-label","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:lke.linode.com/pool-id":{}}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:conditions":{"k:{\"type\":\"DiskPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"MemoryPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"PIDPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"Ready\"}":{"f:lastHeartbeatTime":{},"f:message":{}}}}},"subresource":"status"},{"manager":"manager","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:spec":{"f:taints":{}}}}]},"spec":{"podCIDR":"10.2.1.0/25","podCIDRs":["10.2.1.0/25"],"providerID":"linode://60898581","taints":[{"key":"node.kubernetes.io/not-ready","effect":"NoSchedule"}]},"status":{"capacity":{"cpu":"2","ephemeral-storage":"82486728Ki","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"4022048Ki","pods":"110"},"allocatable":{"cpu":"2","ephemeral-storage":"76019768399","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"3919648Ki","pods":"110"},"conditions":[{"type":"MemoryPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientMemory","message":"kubelet has sufficient memory available"},{"type":"DiskPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasNoDiskPressure","message":"kubelet has no disk pressure"},{"type":"PIDPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientPID","message":"kubelet has sufficient PID available"},{"type":"Ready","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletNotReady","message":"container runtime network not ready: NetworkReady=false reason:NetworkPluginNotReady message:Network plugin returns error: cni plugin not initialized"}],"addresses":[{"type":"Hostname","address":"lke196072-281826-3bf5899b0000"},{"type":"ExternalIP","address":"172.105.48.136"},{"type":"InternalIP","address":"192.168.140.51"}],"daemonEndpoints":{"kubeletEndpoint":{"Port":10250}},"nodeInfo":{"machineID":"fa359c22b23844a989c122c9b506330f","systemUUID":"fa359c22b23844a989c122c9b506330f","bootID":"3fa3b8c3-04cb-4afe-b2c8-40794cb92944","kernelVersion":"6.1.0-22-cloud-amd64","osImage":"Debian GNU/Linux 12 (bookworm)","containerRuntimeVersion":"containerd://1.7.18","kubeletVersion":"v1.29.2","kubeProxyVersion":"v1.29.2","operatingSystem":"linux","architecture":"amd64"}}},{"metadata":{"name":"lke196072-281826-503b07c60000","uid":"b3f6c952-2956-484a-8de4-5090b7045990","resourceVersion":"669","creationTimestamp":"2018-01-02T03:04:05Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/instance-type":"g6-standard-2","beta.kubernetes.io/os":"linux","failure-domain.beta.kubernetes.io/region":"ap-west","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"lke196072-281826-503b07c60000","kubernetes.io/os":"linux","lke.linode.com/pool-id":"281826","node.k8s.linode.com/host-uuid":"8bb24924c0b481c3ae3a41bf5819194b366c512d","node.kubernetes.io/instance-type":"g6-standard-2","topology.kubernetes.io/region":"ap-west"},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///run/containerd/containerd.sock","lke.linode.com/wgip":"172.31.0.2","lke.linode.com/wgpub":"OgsTqLMXrybk5EcVK/GI2USSGHSaVdkWkGpK31Wtfn8=","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:node.alpha.kubernetes.io/ttl":{}}},"f:spec":{"f:podCIDR":{},"f:podCIDRs":{".":{},"v:\"10.2.0.128/25\"":{}}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:volumes.kubernetes.io/controller-managed-attach-detach":{}},"f:labels":{".":{},"f:beta.kubernetes.io/arch":{},"f:beta.kubernetes.io/os":{},"f:kubernetes.io/arch":{},"f:kubernetes.io/hostname":{},"f:kubernetes.io/os":{}}}}},{"manager":"kubeadm","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:kubeadm.alpha.kubernetes.io/cri-socket":{}}}}},{"manager":"linode-cloud-controller-manager-linux","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:beta.kubernetes.io/instance-type":{},"f:failure-domain.beta.kubernetes.io/region":{},"f:node.k8s.linode.com/host-uuid":{},"f:node.kubernetes.io/instance-type":{},"f:topology.kubernetes.io/region":{}}},"f:spec":{"f:providerID":{}}}},{"manager":"linode-cloud-controller-manager-linux","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:addresses":{".":{},"k:{\"type\":\"ExternalIP\"}":{".":{},"f:address":{},"f:type":{}},"k:{\"type\":\"Hostname\"}":{".":{},"f:address":{},"f:type":{}},"k:{\"type\":\"InternalIP\"}":{".":{},"f:address":{},"f:type":{}}}}},"subresource":"status"},{"manager":"kubectl-annotate","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:lke.linode.com/wgip":{},"f:lke.linode.com/wgpub":{}}}}},{"manager":"kubectl-label","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:lke.linode.com/pool-id":{}}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:conditions":{"k:{\"type\":\"DiskPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"MemoryPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"PIDPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"Ready\"}":{"f:lastHeartbeatTime":{},"f:message":{}}},"f:images":{}}},"subresource":"status"},{"manager":"manager","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:spec":{"f:taints":{}}}}]},"spec":{"podCIDR":"10.2.0.128/25","podCIDRs":["10.2.0.128/25"],"providerID":"linode://60898576","taints":[{"key":"node.kubernetes.io/not-ready","effect":"NoSchedule"}]},"status":{"capacity":{"cpu":"2","ephemeral-storage":"82486728Ki","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"4022056Ki","pods":"110"},"allocatable":{"cpu":"2","ephemeral-storage":"76019768399","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"3919656Ki","pods":"110"},"conditions":[{"type":"MemoryPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientMemory","message":"kubelet has sufficient memory available"},{"type":"DiskPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasNoDiskPressure","message":"kubelet has no disk pressure"},{"type":"PIDPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientPID","message":"kubelet has sufficient PID available"},{"type":"Ready","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletNotReady","message":"container runtime network not ready: NetworkReady=false reason:NetworkPluginNotReady message:Network plugin returns error: cni plugin not initialized"}],"addresses":[{"type":"Hostname","address":"lke196072-281826-503b07c60000"},{"type":"ExternalIP","address":"192.46.215.169"},{"type":"InternalIP","address":"192.168.132.186"}],"daemonEndpoints":{"kubeletEndpoint":{"Port":10250}},"nodeInfo":{"machineID":"429cb56662f64e478880e4673c5e7f1f","systemUUID":"429cb56662f64e478880e4673c5e7f1f","bootID":"e56a41a7-b89a-4def-8b61-a845807f7195","kernelVersion":"6.1.0-22-cloud-amd64","osImage":"Debian GNU/Linux 12 (bookworm)","containerRuntimeVersion":"containerd://1.7.18","kubeletVersion":"v1.29.2","kubeProxyVersion":"v1.29.2","operatingSystem":"linux","architecture":"amd64"},"images":[{"names":["registry.k8s.io/pause@sha256:1ff6c18fbef2045af6b9c16bf034cc421a29027b800e4f9b68ae9b1cb3e9ae07","registry.k8s.io/pause:3.5"],"sizeBytes":301416}]}}]} headers: Audit-Id: - - bd644c7a-ec95-4b9e-a395-a36236651512 - Cache-Control: - - no-cache, private - Content-Length: - - "86" - Content-Type: - - application/json - X-Kubernetes-Pf-Flowschema-Uid: - - 89083a2b-4ffe-48eb-ba1a-e2ca012cadd7 - X-Kubernetes-Pf-Prioritylevel-Uid: - - 3833eb11-2ae9-4b3a-991a-57858f5ff927 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - Accept: - - application/json, */* - url: https://146d0e27-cc3f-4c09-a50c-a1b138fa043b.ap-west-2.linodelke.net:443/api/v1/nodes - method: GET - response: - body: | - {"kind":"NodeList","apiVersion":"v1","metadata":{"resourceVersion":"602"},"items":[{"metadata":{"name":"lke76162-118349-634837eff28c","uid":"887829d5-ff94-4545-b16e-4860be6648b3","resourceVersion":"598","creationTimestamp":"2018-01-02T03:04:05Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/instance-type":"g6-standard-2","beta.kubernetes.io/os":"linux","failure-domain.beta.kubernetes.io/region":"ap-west","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"lke76162-118349-634837eff28c","kubernetes.io/os":"linux","node.kubernetes.io/instance-type":"g6-standard-2","topology.kubernetes.io/region":"ap-west"},"annotations":{"node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:node.alpha.kubernetes.io/ttl":{}}},"f:spec":{"f:podCIDR":{},"f:podCIDRs":{".":{},"v:\"10.2.0.0/24\"":{}}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:allocatable":{"f:ephemeral-storage":{}},"f:capacity":{"f:ephemeral-storage":{}},"f:conditions":{"k:{\"type\":\"Ready\"}":{"f:message":{}}}}}},{"manager":"linode-cloud-controller-manager-linux-amd64","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:beta.kubernetes.io/instance-type":{},"f:failure-domain.beta.kubernetes.io/region":{},"f:node.kubernetes.io/instance-type":{},"f:topology.kubernetes.io/region":{}}},"f:spec":{"f:providerID":{},"f:taints":{}}}},{"manager":"linode-cloud-controller-manager-linux-amd64","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:addresses":{"k:{\"type\":\"ExternalIP\"}":{".":{},"f:address":{},"f:type":{}},"k:{\"type\":\"InternalIP\"}":{"f:address":{}}}}},"subresource":"status"}]},"spec":{"podCIDR":"10.2.0.0/24","podCIDRs":["10.2.0.0/24"],"providerID":"linode://39523013","taints":[{"key":"node.kubernetes.io/not-ready","effect":"NoSchedule"}]},"status":{"capacity":{"cpu":"2","ephemeral-storage":"82517840Ki","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"4028096Ki","pods":"110"},"allocatable":{"cpu":"2","ephemeral-storage":"76048441219","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"3925696Ki","pods":"110"},"conditions":[{"type":"MemoryPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientMemory","message":"kubelet has sufficient memory available"},{"type":"DiskPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasNoDiskPressure","message":"kubelet has no disk pressure"},{"type":"PIDPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientPID","message":"kubelet has sufficient PID available"},{"type":"Ready","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletNotReady","message":"container runtime network not ready: NetworkReady=false reason:NetworkPluginNotReady message:docker: network plugin is not ready: cni config uninitialized"}],"addresses":[{"type":"Hostname","address":"lke76162-118349-634837eff28c"},{"type":"ExternalIP","address":"172.105.62.27"},{"type":"InternalIP","address":"192.168.141.86"}],"daemonEndpoints":{"kubeletEndpoint":{"Port":10250}},"nodeInfo":{"machineID":"53a924549f02403785267878854d7b25","systemUUID":"53a924549f02403785267878854d7b25","bootID":"0fb3be06-012f-4937-bb32-588a29856d58","kernelVersion":"5.10.0-14-cloud-amd64","osImage":"Debian GNU/Linux 11 (bullseye)","containerRuntimeVersion":"docker://20.10.15","kubeletVersion":"v1.23.6","kubeProxyVersion":"v1.23.6","operatingSystem":"linux","architecture":"amd64"}}}]} - headers: - Audit-Id: - - c2e927b3-b829-4d55-bb47-1d1c74de2e5e - Cache-Control: - - no-cache, private - Content-Length: - - "4086" - Content-Type: - - application/json - X-Kubernetes-Pf-Flowschema-Uid: - - 89083a2b-4ffe-48eb-ba1a-e2ca012cadd7 - X-Kubernetes-Pf-Prioritylevel-Uid: - - 3833eb11-2ae9-4b3a-991a-57858f5ff927 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - Accept: - - application/json, */* - url: https://146d0e27-cc3f-4c09-a50c-a1b138fa043b.ap-west-2.linodelke.net:443/api/v1/nodes - method: GET - response: - body: | - {"kind":"NodeList","apiVersion":"v1","metadata":{"resourceVersion":"775"},"items":[{"metadata":{"name":"lke76162-118349-634837ef23d0","uid":"20218a65-f9a4-44bc-bc05-0aae618c89cd","resourceVersion":"715","creationTimestamp":"2018-01-02T03:04:05Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/instance-type":"g6-standard-2","beta.kubernetes.io/os":"linux","failure-domain.beta.kubernetes.io/region":"ap-west","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"lke76162-118349-634837ef23d0","kubernetes.io/os":"linux","lke.linode.com/pool-id":"118349","node.kubernetes.io/instance-type":"g6-standard-2","topology.kubernetes.io/region":"ap-west"},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"/var/run/dockershim.sock","lke.linode.com/wgip":"172.31.1.1","lke.linode.com/wgpub":"wjTMSXXXIVbzlfmnMdhF1lbgaHZ8eiYpcxICdT3pdBk=","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:node.alpha.kubernetes.io/ttl":{}}},"f:spec":{"f:podCIDR":{},"f:podCIDRs":{".":{},"v:\"10.2.1.0/24\"":{}}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:volumes.kubernetes.io/controller-managed-attach-detach":{}},"f:labels":{".":{},"f:beta.kubernetes.io/arch":{},"f:beta.kubernetes.io/os":{},"f:kubernetes.io/arch":{},"f:kubernetes.io/hostname":{},"f:kubernetes.io/os":{}}}}},{"manager":"linode-cloud-controller-manager-linux-amd64","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:beta.kubernetes.io/instance-type":{},"f:failure-domain.beta.kubernetes.io/region":{},"f:node.kubernetes.io/instance-type":{},"f:topology.kubernetes.io/region":{}}},"f:spec":{"f:providerID":{},"f:taints":{}}}},{"manager":"linode-cloud-controller-manager-linux-amd64","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:addresses":{"k:{\"type\":\"ExternalIP\"}":{".":{},"f:address":{},"f:type":{}},"k:{\"type\":\"InternalIP\"}":{"f:address":{}}}}},"subresource":"status"},{"manager":"kubeadm","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:kubeadm.alpha.kubernetes.io/cri-socket":{}}}}},{"manager":"kubectl-annotate","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:lke.linode.com/wgip":{},"f:lke.linode.com/wgpub":{}}}}},{"manager":"kubectl-label","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:lke.linode.com/pool-id":{}}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:conditions":{"k:{\"type\":\"DiskPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"MemoryPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"PIDPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"Ready\"}":{"f:lastHeartbeatTime":{},"f:message":{}}}}},"subresource":"status"}]},"spec":{"podCIDR":"10.2.1.0/24","podCIDRs":["10.2.1.0/24"],"providerID":"linode://39523012","taints":[{"key":"node.kubernetes.io/not-ready","effect":"NoSchedule"}]},"status":{"capacity":{"cpu":"2","ephemeral-storage":"82517840Ki","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"4028104Ki","pods":"110"},"allocatable":{"cpu":"2","ephemeral-storage":"76048441219","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"3925704Ki","pods":"110"},"conditions":[{"type":"MemoryPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientMemory","message":"kubelet has sufficient memory available"},{"type":"DiskPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasNoDiskPressure","message":"kubelet has no disk pressure"},{"type":"PIDPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientPID","message":"kubelet has sufficient PID available"},{"type":"Ready","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletNotReady","message":"container runtime network not ready: NetworkReady=false reason:NetworkPluginNotReady message:docker: network plugin is not ready: cni config uninitialized"}],"addresses":[{"type":"Hostname","address":"lke76162-118349-634837ef23d0"},{"type":"ExternalIP","address":"172.105.62.26"},{"type":"InternalIP","address":"192.168.142.88"}],"daemonEndpoints":{"kubeletEndpoint":{"Port":10250}},"nodeInfo":{"machineID":"b4affd53550b4f58b071cfdcc43e6a93","systemUUID":"b4affd53550b4f58b071cfdcc43e6a93","bootID":"f8b50fb1-3649-4dbc-8424-70e68d756f29","kernelVersion":"5.10.0-14-cloud-amd64","osImage":"Debian GNU/Linux 11 (bullseye)","containerRuntimeVersion":"docker://20.10.15","kubeletVersion":"v1.23.6","kubeProxyVersion":"v1.23.6","operatingSystem":"linux","architecture":"amd64"}}},{"metadata":{"name":"lke76162-118349-634837eff28c","uid":"887829d5-ff94-4545-b16e-4860be6648b3","resourceVersion":"770","creationTimestamp":"2018-01-02T03:04:05Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/instance-type":"g6-standard-2","beta.kubernetes.io/os":"linux","failure-domain.beta.kubernetes.io/region":"ap-west","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"lke76162-118349-634837eff28c","kubernetes.io/os":"linux","lke.linode.com/pool-id":"118349","node.kubernetes.io/instance-type":"g6-standard-2","topology.kubernetes.io/region":"ap-west"},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"/var/run/dockershim.sock","lke.linode.com/wgip":"172.31.0.1","lke.linode.com/wgpub":"Lc1h/w/fV6FbHBVHmEHM9EZyK+F0ojXS27IbdYvRMic=","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:node.alpha.kubernetes.io/ttl":{}}},"f:spec":{"f:podCIDR":{},"f:podCIDRs":{".":{},"v:\"10.2.0.0/24\"":{}}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:allocatable":{"f:ephemeral-storage":{}},"f:capacity":{"f:ephemeral-storage":{}},"f:conditions":{"k:{\"type\":\"Ready\"}":{"f:message":{}}}}}},{"manager":"linode-cloud-controller-manager-linux-amd64","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:beta.kubernetes.io/instance-type":{},"f:failure-domain.beta.kubernetes.io/region":{},"f:node.kubernetes.io/instance-type":{},"f:topology.kubernetes.io/region":{}}},"f:spec":{"f:providerID":{},"f:taints":{}}}},{"manager":"linode-cloud-controller-manager-linux-amd64","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:addresses":{"k:{\"type\":\"ExternalIP\"}":{".":{},"f:address":{},"f:type":{}},"k:{\"type\":\"InternalIP\"}":{"f:address":{}}}}},"subresource":"status"},{"manager":"kubeadm","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:kubeadm.alpha.kubernetes.io/cri-socket":{}}}}},{"manager":"kubectl-annotate","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:lke.linode.com/wgip":{},"f:lke.linode.com/wgpub":{}}}}},{"manager":"kubectl-label","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:lke.linode.com/pool-id":{}}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:conditions":{"k:{\"type\":\"DiskPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"MemoryPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"PIDPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"Ready\"}":{"f:lastHeartbeatTime":{}}}}},"subresource":"status"}]},"spec":{"podCIDR":"10.2.0.0/24","podCIDRs":["10.2.0.0/24"],"providerID":"linode://39523013","taints":[{"key":"node.kubernetes.io/not-ready","effect":"NoSchedule"}]},"status":{"capacity":{"cpu":"2","ephemeral-storage":"82517840Ki","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"4028096Ki","pods":"110"},"allocatable":{"cpu":"2","ephemeral-storage":"76048441219","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"3925696Ki","pods":"110"},"conditions":[{"type":"MemoryPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientMemory","message":"kubelet has sufficient memory available"},{"type":"DiskPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasNoDiskPressure","message":"kubelet has no disk pressure"},{"type":"PIDPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientPID","message":"kubelet has sufficient PID available"},{"type":"Ready","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletNotReady","message":"container runtime network not ready: NetworkReady=false reason:NetworkPluginNotReady message:docker: network plugin is not ready: cni config uninitialized"}],"addresses":[{"type":"Hostname","address":"lke76162-118349-634837eff28c"},{"type":"ExternalIP","address":"172.105.62.27"},{"type":"InternalIP","address":"192.168.141.86"}],"daemonEndpoints":{"kubeletEndpoint":{"Port":10250}},"nodeInfo":{"machineID":"53a924549f02403785267878854d7b25","systemUUID":"53a924549f02403785267878854d7b25","bootID":"0fb3be06-012f-4937-bb32-588a29856d58","kernelVersion":"5.10.0-14-cloud-amd64","osImage":"Debian GNU/Linux 11 (bullseye)","containerRuntimeVersion":"docker://20.10.15","kubeletVersion":"v1.23.6","kubeProxyVersion":"v1.23.6","operatingSystem":"linux","architecture":"amd64"}}},{"metadata":{"name":"lke76162-118349-634837f0bf12","uid":"e7294b6e-3907-4d37-b24e-883770914ab0","resourceVersion":"772","creationTimestamp":"2018-01-02T03:04:05Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/instance-type":"g6-standard-2","beta.kubernetes.io/os":"linux","failure-domain.beta.kubernetes.io/region":"ap-west","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"lke76162-118349-634837f0bf12","kubernetes.io/os":"linux","lke.linode.com/pool-id":"118349","node.kubernetes.io/instance-type":"g6-standard-2","topology.kubernetes.io/region":"ap-west"},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"/var/run/dockershim.sock","lke.linode.com/wgip":"172.31.2.1","lke.linode.com/wgpub":"1/okeF6mP/ZRYdFD28nLjRlyWbKMJ1aiAnaWq1g4MQU=","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:node.alpha.kubernetes.io/ttl":{}}},"f:spec":{"f:podCIDR":{},"f:podCIDRs":{".":{},"v:\"10.2.2.0/24\"":{}}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:volumes.kubernetes.io/controller-managed-attach-detach":{}},"f:labels":{".":{},"f:beta.kubernetes.io/arch":{},"f:beta.kubernetes.io/os":{},"f:kubernetes.io/arch":{},"f:kubernetes.io/hostname":{},"f:kubernetes.io/os":{}}}}},{"manager":"linode-cloud-controller-manager-linux-amd64","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:beta.kubernetes.io/instance-type":{},"f:failure-domain.beta.kubernetes.io/region":{},"f:node.kubernetes.io/instance-type":{},"f:topology.kubernetes.io/region":{}}},"f:spec":{"f:providerID":{},"f:taints":{}}}},{"manager":"linode-cloud-controller-manager-linux-amd64","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:addresses":{"k:{\"type\":\"ExternalIP\"}":{".":{},"f:address":{},"f:type":{}},"k:{\"type\":\"InternalIP\"}":{"f:address":{}}}}},"subresource":"status"},{"manager":"kubeadm","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:kubeadm.alpha.kubernetes.io/cri-socket":{}}}}},{"manager":"kubectl-annotate","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:lke.linode.com/wgip":{},"f:lke.linode.com/wgpub":{}}}}},{"manager":"kubectl-label","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:lke.linode.com/pool-id":{}}}}}]},"spec":{"podCIDR":"10.2.2.0/24","podCIDRs":["10.2.2.0/24"],"providerID":"linode://39523014","taints":[{"key":"node.kubernetes.io/not-ready","effect":"NoSchedule"}]},"status":{"capacity":{"cpu":"2","ephemeral-storage":"82517840Ki","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"4028104Ki","pods":"110"},"allocatable":{"cpu":"2","ephemeral-storage":"76048441219","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"3925704Ki","pods":"110"},"conditions":[{"type":"MemoryPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientMemory","message":"kubelet has sufficient memory available"},{"type":"DiskPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasNoDiskPressure","message":"kubelet has no disk pressure"},{"type":"PIDPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientPID","message":"kubelet has sufficient PID available"},{"type":"Ready","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletNotReady","message":"[container runtime network not ready: NetworkReady=false reason:NetworkPluginNotReady message:docker: network plugin is not ready: cni config uninitialized, CSINode is not yet initialized]"}],"addresses":[{"type":"Hostname","address":"lke76162-118349-634837f0bf12"},{"type":"ExternalIP","address":"172.105.62.55"},{"type":"InternalIP","address":"192.168.141.133"}],"daemonEndpoints":{"kubeletEndpoint":{"Port":10250}},"nodeInfo":{"machineID":"54669e805a6949a28451b3cbf64d033f","systemUUID":"54669e805a6949a28451b3cbf64d033f","bootID":"990f4bfa-ddc7-4a61-9b1d-b238a56a6a17","kernelVersion":"5.10.0-14-cloud-amd64","osImage":"Debian GNU/Linux 11 (bullseye)","containerRuntimeVersion":"docker://20.10.15","kubeletVersion":"v1.23.6","kubeProxyVersion":"v1.23.6","operatingSystem":"linux","architecture":"amd64"}}}]} - headers: - Audit-Id: - - d4320a17-b045-4c19-8e9b-4c2706a7aad1 + - 16dd2df2-bc15-415e-9feb-f50dafb3e96d Cache-Control: - no-cache, private Content-Type: - application/json X-Kubernetes-Pf-Flowschema-Uid: - - 89083a2b-4ffe-48eb-ba1a-e2ca012cadd7 + - 6d424735-6880-45b5-ae44-504dcaaf697b X-Kubernetes-Pf-Prioritylevel-Uid: - - 3833eb11-2ae9-4b3a-991a-57858f5ff927 + - cb738b5a-e2af-4c4a-b18c-734cfdeda57b status: 200 OK code: 200 duration: "" @@ -113,22 +63,24 @@ interactions: headers: Accept: - application/json, */* - url: https://146d0e27-cc3f-4c09-a50c-a1b138fa043b.ap-west-2.linodelke.net:443/api/v1/nodes + User-Agent: + - integration.test/v0.0.0 (darwin/arm64) kubernetes/$Format + url: https://cf0b0500-be57-4655-a62c-238339f08ab9.ap-west-2.linodelke.net:443/api/v1/nodes method: GET response: body: | - {"kind":"NodeList","apiVersion":"v1","metadata":{"resourceVersion":"846"},"items":[{"metadata":{"name":"lke76162-118349-634837ef23d0","uid":"20218a65-f9a4-44bc-bc05-0aae618c89cd","resourceVersion":"798","creationTimestamp":"2018-01-02T03:04:05Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/instance-type":"g6-standard-2","beta.kubernetes.io/os":"linux","failure-domain.beta.kubernetes.io/region":"ap-west","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"lke76162-118349-634837ef23d0","kubernetes.io/os":"linux","lke.linode.com/pool-id":"118349","node.kubernetes.io/instance-type":"g6-standard-2","topology.kubernetes.io/region":"ap-west"},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"/var/run/dockershim.sock","lke.linode.com/wgip":"172.31.1.1","lke.linode.com/wgpub":"wjTMSXXXIVbzlfmnMdhF1lbgaHZ8eiYpcxICdT3pdBk=","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:node.alpha.kubernetes.io/ttl":{}}},"f:spec":{"f:podCIDR":{},"f:podCIDRs":{".":{},"v:\"10.2.1.0/24\"":{}}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:volumes.kubernetes.io/controller-managed-attach-detach":{}},"f:labels":{".":{},"f:beta.kubernetes.io/arch":{},"f:beta.kubernetes.io/os":{},"f:kubernetes.io/arch":{},"f:kubernetes.io/hostname":{},"f:kubernetes.io/os":{}}}}},{"manager":"linode-cloud-controller-manager-linux-amd64","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:beta.kubernetes.io/instance-type":{},"f:failure-domain.beta.kubernetes.io/region":{},"f:node.kubernetes.io/instance-type":{},"f:topology.kubernetes.io/region":{}}},"f:spec":{"f:providerID":{},"f:taints":{}}}},{"manager":"linode-cloud-controller-manager-linux-amd64","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:addresses":{"k:{\"type\":\"ExternalIP\"}":{".":{},"f:address":{},"f:type":{}},"k:{\"type\":\"InternalIP\"}":{"f:address":{}}}}},"subresource":"status"},{"manager":"kubeadm","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:kubeadm.alpha.kubernetes.io/cri-socket":{}}}}},{"manager":"kubectl-annotate","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:lke.linode.com/wgip":{},"f:lke.linode.com/wgpub":{}}}}},{"manager":"kubectl-label","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:lke.linode.com/pool-id":{}}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:conditions":{"k:{\"type\":\"DiskPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"MemoryPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"PIDPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"Ready\"}":{"f:lastHeartbeatTime":{},"f:message":{}}}}},"subresource":"status"}]},"spec":{"podCIDR":"10.2.1.0/24","podCIDRs":["10.2.1.0/24"],"providerID":"linode://39523012","taints":[{"key":"node.kubernetes.io/not-ready","effect":"NoSchedule"}]},"status":{"capacity":{"cpu":"2","ephemeral-storage":"82517840Ki","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"4028104Ki","pods":"110"},"allocatable":{"cpu":"2","ephemeral-storage":"76048441219","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"3925704Ki","pods":"110"},"conditions":[{"type":"MemoryPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientMemory","message":"kubelet has sufficient memory available"},{"type":"DiskPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasNoDiskPressure","message":"kubelet has no disk pressure"},{"type":"PIDPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientPID","message":"kubelet has sufficient PID available"},{"type":"Ready","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletNotReady","message":"container runtime network not ready: NetworkReady=false reason:NetworkPluginNotReady message:docker: network plugin is not ready: cni config uninitialized"}],"addresses":[{"type":"Hostname","address":"lke76162-118349-634837ef23d0"},{"type":"ExternalIP","address":"172.105.62.26"},{"type":"InternalIP","address":"192.168.142.88"}],"daemonEndpoints":{"kubeletEndpoint":{"Port":10250}},"nodeInfo":{"machineID":"b4affd53550b4f58b071cfdcc43e6a93","systemUUID":"b4affd53550b4f58b071cfdcc43e6a93","bootID":"f8b50fb1-3649-4dbc-8424-70e68d756f29","kernelVersion":"5.10.0-14-cloud-amd64","osImage":"Debian GNU/Linux 11 (bullseye)","containerRuntimeVersion":"docker://20.10.15","kubeletVersion":"v1.23.6","kubeProxyVersion":"v1.23.6","operatingSystem":"linux","architecture":"amd64"}}},{"metadata":{"name":"lke76162-118349-634837eff28c","uid":"887829d5-ff94-4545-b16e-4860be6648b3","resourceVersion":"845","creationTimestamp":"2018-01-02T03:04:05Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/instance-type":"g6-standard-2","beta.kubernetes.io/os":"linux","failure-domain.beta.kubernetes.io/region":"ap-west","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"lke76162-118349-634837eff28c","kubernetes.io/os":"linux","lke.linode.com/pool-id":"118349","node.kubernetes.io/instance-type":"g6-standard-2","topology.kubernetes.io/region":"ap-west"},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"/var/run/dockershim.sock","lke.linode.com/wgip":"172.31.0.1","lke.linode.com/wgpub":"Lc1h/w/fV6FbHBVHmEHM9EZyK+F0ojXS27IbdYvRMic=","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:node.alpha.kubernetes.io/ttl":{}}},"f:spec":{"f:podCIDR":{},"f:podCIDRs":{".":{},"v:\"10.2.0.0/24\"":{}}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:allocatable":{"f:ephemeral-storage":{}},"f:capacity":{"f:ephemeral-storage":{}}}}},{"manager":"linode-cloud-controller-manager-linux-amd64","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:beta.kubernetes.io/instance-type":{},"f:failure-domain.beta.kubernetes.io/region":{},"f:node.kubernetes.io/instance-type":{},"f:topology.kubernetes.io/region":{}}},"f:spec":{"f:providerID":{},"f:taints":{}}}},{"manager":"linode-cloud-controller-manager-linux-amd64","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:addresses":{"k:{\"type\":\"ExternalIP\"}":{".":{},"f:address":{},"f:type":{}},"k:{\"type\":\"InternalIP\"}":{"f:address":{}}}}},"subresource":"status"},{"manager":"kubeadm","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:kubeadm.alpha.kubernetes.io/cri-socket":{}}}}},{"manager":"kubectl-annotate","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:lke.linode.com/wgip":{},"f:lke.linode.com/wgpub":{}}}}},{"manager":"kubectl-label","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:lke.linode.com/pool-id":{}}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:conditions":{"k:{\"type\":\"DiskPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"MemoryPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"PIDPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"Ready\"}":{"f:lastHeartbeatTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{}}},"f:images":{}}},"subresource":"status"}]},"spec":{"podCIDR":"10.2.0.0/24","podCIDRs":["10.2.0.0/24"],"providerID":"linode://39523013","taints":[{"key":"node.kubernetes.io/not-ready","effect":"NoSchedule"}]},"status":{"capacity":{"cpu":"2","ephemeral-storage":"82517840Ki","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"4028096Ki","pods":"110"},"allocatable":{"cpu":"2","ephemeral-storage":"76048441219","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"3925696Ki","pods":"110"},"conditions":[{"type":"MemoryPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientMemory","message":"kubelet has sufficient memory available"},{"type":"DiskPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasNoDiskPressure","message":"kubelet has no disk pressure"},{"type":"PIDPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientPID","message":"kubelet has sufficient PID available"},{"type":"Ready","status":"True","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletReady","message":"kubelet is posting ready status. AppArmor enabled"}],"addresses":[{"type":"Hostname","address":"lke76162-118349-634837eff28c"},{"type":"ExternalIP","address":"172.105.62.27"},{"type":"InternalIP","address":"192.168.141.86"}],"daemonEndpoints":{"kubeletEndpoint":{"Port":10250}},"nodeInfo":{"machineID":"53a924549f02403785267878854d7b25","systemUUID":"53a924549f02403785267878854d7b25","bootID":"0fb3be06-012f-4937-bb32-588a29856d58","kernelVersion":"5.10.0-14-cloud-amd64","osImage":"Debian GNU/Linux 11 (bullseye)","containerRuntimeVersion":"docker://20.10.15","kubeletVersion":"v1.23.6","kubeProxyVersion":"v1.23.6","operatingSystem":"linux","architecture":"amd64"},"images":[{"names":["bitnami/kubectl@sha256:c4a8d9c0cd9c5f903830ea64816c83adf307ff1d775bc3e5b77f1d49d3960205","bitnami/kubectl:1.16.3-debian-10-r36"],"sizeBytes":182705735},{"names":["linode/kube-proxy-amd64@sha256:956fae45da675f68310f51b43654eee078a861d3d2ff2544a3e218ac4aaed8e9","linode/kube-proxy-amd64:v1.23.10"],"sizeBytes":112319634},{"names":["linode/pause@sha256:4a1c4b21597c1b4415bdbecb28a3296c6b5e23ca4f9feeb599860a1dac6a0108","linode/pause:3.2"],"sizeBytes":682696}]}},{"metadata":{"name":"lke76162-118349-634837f0bf12","uid":"e7294b6e-3907-4d37-b24e-883770914ab0","resourceVersion":"837","creationTimestamp":"2018-01-02T03:04:05Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/instance-type":"g6-standard-2","beta.kubernetes.io/os":"linux","failure-domain.beta.kubernetes.io/region":"ap-west","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"lke76162-118349-634837f0bf12","kubernetes.io/os":"linux","lke.linode.com/pool-id":"118349","node.kubernetes.io/instance-type":"g6-standard-2","topology.kubernetes.io/region":"ap-west"},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"/var/run/dockershim.sock","lke.linode.com/wgip":"172.31.2.1","lke.linode.com/wgpub":"1/okeF6mP/ZRYdFD28nLjRlyWbKMJ1aiAnaWq1g4MQU=","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:node.alpha.kubernetes.io/ttl":{}}},"f:spec":{"f:podCIDR":{},"f:podCIDRs":{".":{},"v:\"10.2.2.0/24\"":{}}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:volumes.kubernetes.io/controller-managed-attach-detach":{}},"f:labels":{".":{},"f:beta.kubernetes.io/arch":{},"f:beta.kubernetes.io/os":{},"f:kubernetes.io/arch":{},"f:kubernetes.io/hostname":{},"f:kubernetes.io/os":{}}}}},{"manager":"linode-cloud-controller-manager-linux-amd64","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:beta.kubernetes.io/instance-type":{},"f:failure-domain.beta.kubernetes.io/region":{},"f:node.kubernetes.io/instance-type":{},"f:topology.kubernetes.io/region":{}}},"f:spec":{"f:providerID":{},"f:taints":{}}}},{"manager":"linode-cloud-controller-manager-linux-amd64","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:addresses":{"k:{\"type\":\"ExternalIP\"}":{".":{},"f:address":{},"f:type":{}},"k:{\"type\":\"InternalIP\"}":{"f:address":{}}}}},"subresource":"status"},{"manager":"kubeadm","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:kubeadm.alpha.kubernetes.io/cri-socket":{}}}}},{"manager":"kubectl-annotate","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:lke.linode.com/wgip":{},"f:lke.linode.com/wgpub":{}}}}},{"manager":"kubectl-label","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:lke.linode.com/pool-id":{}}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:conditions":{"k:{\"type\":\"DiskPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"MemoryPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"PIDPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"Ready\"}":{"f:lastHeartbeatTime":{},"f:message":{}}}}},"subresource":"status"}]},"spec":{"podCIDR":"10.2.2.0/24","podCIDRs":["10.2.2.0/24"],"providerID":"linode://39523014","taints":[{"key":"node.kubernetes.io/not-ready","effect":"NoSchedule"}]},"status":{"capacity":{"cpu":"2","ephemeral-storage":"82517840Ki","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"4028104Ki","pods":"110"},"allocatable":{"cpu":"2","ephemeral-storage":"76048441219","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"3925704Ki","pods":"110"},"conditions":[{"type":"MemoryPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientMemory","message":"kubelet has sufficient memory available"},{"type":"DiskPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasNoDiskPressure","message":"kubelet has no disk pressure"},{"type":"PIDPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientPID","message":"kubelet has sufficient PID available"},{"type":"Ready","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletNotReady","message":"container runtime network not ready: NetworkReady=false reason:NetworkPluginNotReady message:docker: network plugin is not ready: cni config uninitialized"}],"addresses":[{"type":"Hostname","address":"lke76162-118349-634837f0bf12"},{"type":"ExternalIP","address":"172.105.62.55"},{"type":"InternalIP","address":"192.168.141.133"}],"daemonEndpoints":{"kubeletEndpoint":{"Port":10250}},"nodeInfo":{"machineID":"54669e805a6949a28451b3cbf64d033f","systemUUID":"54669e805a6949a28451b3cbf64d033f","bootID":"990f4bfa-ddc7-4a61-9b1d-b238a56a6a17","kernelVersion":"5.10.0-14-cloud-amd64","osImage":"Debian GNU/Linux 11 (bullseye)","containerRuntimeVersion":"docker://20.10.15","kubeletVersion":"v1.23.6","kubeProxyVersion":"v1.23.6","operatingSystem":"linux","architecture":"amd64"}}}]} + {"kind":"NodeList","apiVersion":"v1","metadata":{"resourceVersion":"739"},"items":[{"metadata":{"name":"lke196072-281826-119b2c4c0000","uid":"553ca7d3-92d5-4f7a-b3a2-d431fcc73451","resourceVersion":"717","creationTimestamp":"2018-01-02T03:04:05Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/instance-type":"g6-standard-2","beta.kubernetes.io/os":"linux","failure-domain.beta.kubernetes.io/region":"ap-west","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"lke196072-281826-119b2c4c0000","kubernetes.io/os":"linux","lke.linode.com/pool-id":"281826","node.k8s.linode.com/host-uuid":"d946738609b866787b882e81aabef414a072050a","node.kubernetes.io/instance-type":"g6-standard-2","topology.kubernetes.io/region":"ap-west"},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///run/containerd/containerd.sock","lke.linode.com/wgip":"172.31.0.1","lke.linode.com/wgpub":"rqkFBcvZrp4OEtYwJ+MGr5/L+ctKdSw5paZCRIqE3hA=","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:node.alpha.kubernetes.io/ttl":{}}},"f:spec":{"f:podCIDR":{},"f:podCIDRs":{".":{},"v:\"10.2.0.0/25\"":{}}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:volumes.kubernetes.io/controller-managed-attach-detach":{}},"f:labels":{".":{},"f:beta.kubernetes.io/arch":{},"f:beta.kubernetes.io/os":{},"f:kubernetes.io/arch":{},"f:kubernetes.io/hostname":{},"f:kubernetes.io/os":{}}}}},{"manager":"kubeadm","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:kubeadm.alpha.kubernetes.io/cri-socket":{}}}}},{"manager":"linode-cloud-controller-manager-linux","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:beta.kubernetes.io/instance-type":{},"f:failure-domain.beta.kubernetes.io/region":{},"f:node.k8s.linode.com/host-uuid":{},"f:node.kubernetes.io/instance-type":{},"f:topology.kubernetes.io/region":{}}},"f:spec":{"f:providerID":{}}}},{"manager":"linode-cloud-controller-manager-linux","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:addresses":{".":{},"k:{\"type\":\"ExternalIP\"}":{".":{},"f:address":{},"f:type":{}},"k:{\"type\":\"Hostname\"}":{".":{},"f:address":{},"f:type":{}},"k:{\"type\":\"InternalIP\"}":{".":{},"f:address":{},"f:type":{}}}}},"subresource":"status"},{"manager":"kubectl-annotate","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:lke.linode.com/wgip":{},"f:lke.linode.com/wgpub":{}}}}},{"manager":"kubectl-label","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:lke.linode.com/pool-id":{}}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:conditions":{"k:{\"type\":\"DiskPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"MemoryPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"PIDPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"Ready\"}":{"f:lastHeartbeatTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{}}}}},"subresource":"status"}]},"spec":{"podCIDR":"10.2.0.0/25","podCIDRs":["10.2.0.0/25"],"providerID":"linode://60898579"},"status":{"capacity":{"cpu":"2","ephemeral-storage":"82486728Ki","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"4022056Ki","pods":"110"},"allocatable":{"cpu":"2","ephemeral-storage":"76019768399","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"3919656Ki","pods":"110"},"conditions":[{"type":"MemoryPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientMemory","message":"kubelet has sufficient memory available"},{"type":"DiskPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasNoDiskPressure","message":"kubelet has no disk pressure"},{"type":"PIDPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientPID","message":"kubelet has sufficient PID available"},{"type":"Ready","status":"True","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletReady","message":"kubelet is posting ready status. AppArmor enabled"}],"addresses":[{"type":"Hostname","address":"lke196072-281826-119b2c4c0000"},{"type":"ExternalIP","address":"172.105.48.78"},{"type":"InternalIP","address":"192.168.132.250"}],"daemonEndpoints":{"kubeletEndpoint":{"Port":10250}},"nodeInfo":{"machineID":"4ad4365cbfa648769bd6262c32a21efc","systemUUID":"4ad4365cbfa648769bd6262c32a21efc","bootID":"260c450f-a21b-44e1-9019-611e68ef7368","kernelVersion":"6.1.0-22-cloud-amd64","osImage":"Debian GNU/Linux 12 (bookworm)","containerRuntimeVersion":"containerd://1.7.18","kubeletVersion":"v1.29.2","kubeProxyVersion":"v1.29.2","operatingSystem":"linux","architecture":"amd64"}}},{"metadata":{"name":"lke196072-281826-3bf5899b0000","uid":"cf797837-6660-4c85-8261-84b931eaec4f","resourceVersion":"694","creationTimestamp":"2018-01-02T03:04:05Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/instance-type":"g6-standard-2","beta.kubernetes.io/os":"linux","failure-domain.beta.kubernetes.io/region":"ap-west","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"lke196072-281826-3bf5899b0000","kubernetes.io/os":"linux","lke.linode.com/pool-id":"281826","node.k8s.linode.com/host-uuid":"8c2590e9f86cd0e4ca885b2bd860211d7dbfd9e9","node.kubernetes.io/instance-type":"g6-standard-2","topology.kubernetes.io/region":"ap-west"},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///run/containerd/containerd.sock","lke.linode.com/wgip":"172.31.0.3","lke.linode.com/wgpub":"EEKdoARqIvGt80jIPdLkwviyULpLxAv2UXsUJi3I7zQ=","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:node.alpha.kubernetes.io/ttl":{}}},"f:spec":{"f:podCIDR":{},"f:podCIDRs":{".":{},"v:\"10.2.1.0/25\"":{}}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:volumes.kubernetes.io/controller-managed-attach-detach":{}},"f:labels":{".":{},"f:beta.kubernetes.io/arch":{},"f:beta.kubernetes.io/os":{},"f:kubernetes.io/arch":{},"f:kubernetes.io/hostname":{},"f:kubernetes.io/os":{}}}}},{"manager":"linode-cloud-controller-manager-linux","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:beta.kubernetes.io/instance-type":{},"f:failure-domain.beta.kubernetes.io/region":{},"f:node.k8s.linode.com/host-uuid":{},"f:node.kubernetes.io/instance-type":{},"f:topology.kubernetes.io/region":{}}},"f:spec":{"f:providerID":{}}}},{"manager":"linode-cloud-controller-manager-linux","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:addresses":{".":{},"k:{\"type\":\"ExternalIP\"}":{".":{},"f:address":{},"f:type":{}},"k:{\"type\":\"Hostname\"}":{".":{},"f:address":{},"f:type":{}},"k:{\"type\":\"InternalIP\"}":{".":{},"f:address":{},"f:type":{}}}}},"subresource":"status"},{"manager":"kubeadm","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:kubeadm.alpha.kubernetes.io/cri-socket":{}}}}},{"manager":"kubectl-annotate","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:lke.linode.com/wgip":{},"f:lke.linode.com/wgpub":{}}}}},{"manager":"kubectl-label","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:lke.linode.com/pool-id":{}}}}},{"manager":"manager","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:spec":{"f:taints":{}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:conditions":{"k:{\"type\":\"DiskPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"MemoryPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"PIDPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"Ready\"}":{"f:lastHeartbeatTime":{},"f:message":{}}}}},"subresource":"status"}]},"spec":{"podCIDR":"10.2.1.0/25","podCIDRs":["10.2.1.0/25"],"providerID":"linode://60898581","taints":[{"key":"node.kubernetes.io/not-ready","effect":"NoSchedule"}]},"status":{"capacity":{"cpu":"2","ephemeral-storage":"82486728Ki","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"4022048Ki","pods":"110"},"allocatable":{"cpu":"2","ephemeral-storage":"76019768399","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"3919648Ki","pods":"110"},"conditions":[{"type":"MemoryPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientMemory","message":"kubelet has sufficient memory available"},{"type":"DiskPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasNoDiskPressure","message":"kubelet has no disk pressure"},{"type":"PIDPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientPID","message":"kubelet has sufficient PID available"},{"type":"Ready","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletNotReady","message":"container runtime network not ready: NetworkReady=false reason:NetworkPluginNotReady message:Network plugin returns error: cni plugin not initialized"}],"addresses":[{"type":"Hostname","address":"lke196072-281826-3bf5899b0000"},{"type":"ExternalIP","address":"172.105.48.136"},{"type":"InternalIP","address":"192.168.140.51"}],"daemonEndpoints":{"kubeletEndpoint":{"Port":10250}},"nodeInfo":{"machineID":"fa359c22b23844a989c122c9b506330f","systemUUID":"fa359c22b23844a989c122c9b506330f","bootID":"3fa3b8c3-04cb-4afe-b2c8-40794cb92944","kernelVersion":"6.1.0-22-cloud-amd64","osImage":"Debian GNU/Linux 12 (bookworm)","containerRuntimeVersion":"containerd://1.7.18","kubeletVersion":"v1.29.2","kubeProxyVersion":"v1.29.2","operatingSystem":"linux","architecture":"amd64"}}},{"metadata":{"name":"lke196072-281826-503b07c60000","uid":"b3f6c952-2956-484a-8de4-5090b7045990","resourceVersion":"692","creationTimestamp":"2018-01-02T03:04:05Z","labels":{"beta.kubernetes.io/arch":"amd64","beta.kubernetes.io/instance-type":"g6-standard-2","beta.kubernetes.io/os":"linux","failure-domain.beta.kubernetes.io/region":"ap-west","kubernetes.io/arch":"amd64","kubernetes.io/hostname":"lke196072-281826-503b07c60000","kubernetes.io/os":"linux","lke.linode.com/pool-id":"281826","node.k8s.linode.com/host-uuid":"8bb24924c0b481c3ae3a41bf5819194b366c512d","node.kubernetes.io/instance-type":"g6-standard-2","topology.kubernetes.io/region":"ap-west"},"annotations":{"kubeadm.alpha.kubernetes.io/cri-socket":"unix:///run/containerd/containerd.sock","lke.linode.com/wgip":"172.31.0.2","lke.linode.com/wgpub":"OgsTqLMXrybk5EcVK/GI2USSGHSaVdkWkGpK31Wtfn8=","node.alpha.kubernetes.io/ttl":"0","volumes.kubernetes.io/controller-managed-attach-detach":"true"},"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:node.alpha.kubernetes.io/ttl":{}}},"f:spec":{"f:podCIDR":{},"f:podCIDRs":{".":{},"v:\"10.2.0.128/25\"":{}}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:volumes.kubernetes.io/controller-managed-attach-detach":{}},"f:labels":{".":{},"f:beta.kubernetes.io/arch":{},"f:beta.kubernetes.io/os":{},"f:kubernetes.io/arch":{},"f:kubernetes.io/hostname":{},"f:kubernetes.io/os":{}}}}},{"manager":"kubeadm","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:kubeadm.alpha.kubernetes.io/cri-socket":{}}}}},{"manager":"linode-cloud-controller-manager-linux","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:beta.kubernetes.io/instance-type":{},"f:failure-domain.beta.kubernetes.io/region":{},"f:node.k8s.linode.com/host-uuid":{},"f:node.kubernetes.io/instance-type":{},"f:topology.kubernetes.io/region":{}}},"f:spec":{"f:providerID":{}}}},{"manager":"linode-cloud-controller-manager-linux","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:addresses":{".":{},"k:{\"type\":\"ExternalIP\"}":{".":{},"f:address":{},"f:type":{}},"k:{\"type\":\"Hostname\"}":{".":{},"f:address":{},"f:type":{}},"k:{\"type\":\"InternalIP\"}":{".":{},"f:address":{},"f:type":{}}}}},"subresource":"status"},{"manager":"kubectl-annotate","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{"f:lke.linode.com/wgip":{},"f:lke.linode.com/wgpub":{}}}}},{"manager":"kubectl-label","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{"f:lke.linode.com/pool-id":{}}}}},{"manager":"manager","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:spec":{"f:taints":{}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2018-01-02T03:04:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:conditions":{"k:{\"type\":\"DiskPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"MemoryPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"PIDPressure\"}":{"f:lastHeartbeatTime":{}},"k:{\"type\":\"Ready\"}":{"f:lastHeartbeatTime":{},"f:message":{}}},"f:images":{}}},"subresource":"status"}]},"spec":{"podCIDR":"10.2.0.128/25","podCIDRs":["10.2.0.128/25"],"providerID":"linode://60898576","taints":[{"key":"node.kubernetes.io/not-ready","effect":"NoSchedule"}]},"status":{"capacity":{"cpu":"2","ephemeral-storage":"82486728Ki","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"4022056Ki","pods":"110"},"allocatable":{"cpu":"2","ephemeral-storage":"76019768399","hugepages-1Gi":"0","hugepages-2Mi":"0","memory":"3919656Ki","pods":"110"},"conditions":[{"type":"MemoryPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientMemory","message":"kubelet has sufficient memory available"},{"type":"DiskPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasNoDiskPressure","message":"kubelet has no disk pressure"},{"type":"PIDPressure","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletHasSufficientPID","message":"kubelet has sufficient PID available"},{"type":"Ready","status":"False","lastHeartbeatTime":"2018-01-02T03:04:05Z","lastTransitionTime":"2018-01-02T03:04:05Z","reason":"KubeletNotReady","message":"container runtime network not ready: NetworkReady=false reason:NetworkPluginNotReady message:Network plugin returns error: cni plugin not initialized"}],"addresses":[{"type":"Hostname","address":"lke196072-281826-503b07c60000"},{"type":"ExternalIP","address":"192.46.215.169"},{"type":"InternalIP","address":"192.168.132.186"}],"daemonEndpoints":{"kubeletEndpoint":{"Port":10250}},"nodeInfo":{"machineID":"429cb56662f64e478880e4673c5e7f1f","systemUUID":"429cb56662f64e478880e4673c5e7f1f","bootID":"e56a41a7-b89a-4def-8b61-a845807f7195","kernelVersion":"6.1.0-22-cloud-amd64","osImage":"Debian GNU/Linux 12 (bookworm)","containerRuntimeVersion":"containerd://1.7.18","kubeletVersion":"v1.29.2","kubeProxyVersion":"v1.29.2","operatingSystem":"linux","architecture":"amd64"},"images":[{"names":["registry.k8s.io/pause@sha256:1ff6c18fbef2045af6b9c16bf034cc421a29027b800e4f9b68ae9b1cb3e9ae07","registry.k8s.io/pause:3.5"],"sizeBytes":301416}]}}]} headers: Audit-Id: - - 427f611f-4216-4a80-b6d9-53d892a8d6df + - 6a1bd427-229d-4b0d-9de7-c926f102efa9 Cache-Control: - no-cache, private Content-Type: - application/json X-Kubernetes-Pf-Flowschema-Uid: - - 89083a2b-4ffe-48eb-ba1a-e2ca012cadd7 + - 6d424735-6880-45b5-ae44-504dcaaf697b X-Kubernetes-Pf-Prioritylevel-Uid: - - 3833eb11-2ae9-4b3a-991a-57858f5ff927 + - cb738b5a-e2af-4c4a-b18c-734cfdeda57b status: 200 OK code: 200 duration: "" diff --git a/test/integration/fixtures/TestLKECluster_withACL.yaml b/test/integration/fixtures/TestLKECluster_withACL.yaml index 24d2c2a83..3bfdaf7ce 100644 --- a/test/integration/fixtures/TestLKECluster_withACL.yaml +++ b/test/integration/fixtures/TestLKECluster_withACL.yaml @@ -16,74 +16,75 @@ interactions: response: body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", - "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases"], - "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, + "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", + "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5, + 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5, + 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": - {"maximum_pgs_per_customer": 5, "maximum_linodes_per_pg": 5}, "site_type": "core"}, - {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities": + {"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"], "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, + 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"}, "placement_group_limits": {"maximum_pgs_per_customer": - 5, "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"], "status": "ok", "resolvers": {"ipv4": - "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5, - 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5", - "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 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"}, "placement_group_limits": {"maximum_pgs_per_customer": - 5, "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"}, "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"}, "placement_group_limits": {"maximum_pgs_per_customer": - 5, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-ord", "label": - "Chicago, IL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "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": - "1234::5678, 1234::5678, 1234::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"}, "placement_group_limits": {"maximum_pgs_per_customer": - 5, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label": + 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", "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", + "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", + "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status": + "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18, + 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - 5, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label": + 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", "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, + "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - 5, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label": + 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": @@ -92,7 +93,7 @@ interactions: 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, - "placement_group_limits": {"maximum_pgs_per_customer": 5, "maximum_linodes_per_pg": + "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", @@ -102,8 +103,8 @@ interactions: 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": - {"maximum_pgs_per_customer": 5, "maximum_linodes_per_pg": 5}, "site_type": "core"}, - {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities": + {"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, @@ -112,9 +113,9 @@ interactions: 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": - {"maximum_pgs_per_customer": 5, "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", + {"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, @@ -122,9 +123,9 @@ interactions: 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": - {"maximum_pgs_per_customer": 5, "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", + {"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", @@ -132,17 +133,17 @@ interactions: 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - 5, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label": + 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", "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, + "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": - 5, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label": + 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": @@ -152,17 +153,17 @@ interactions: 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - 5, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label": + 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": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - 5, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label": + 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,7 +173,7 @@ interactions: 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - 5, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label": + 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": @@ -182,73 +183,94 @@ interactions: 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - 5, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central", + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label": + "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50, + 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51, + 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32, + 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central", "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block - Storage Migrations", "Managed Databases"], "status": "ok", "resolvers": {"ipv4": - "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5, 96.126.124.5, - 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6": "1234::5678, - 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, - 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - 5, "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"], "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": - 5, "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, 1234::5678, 1234::5678, 1234::5678, + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5, + 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, + 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, + 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, - "placement_group_limits": {"maximum_pgs_per_customer": 5, "maximum_linodes_per_pg": - 5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ", "country": + "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": - "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, + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5, + 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - 5, "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"], "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": 5, "maximum_linodes_per_pg": + 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"], "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, + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "139.162.11.5, 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, + 139.162.21.5, 139.162.27.5, 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU + Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5, + 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5, + 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, - 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - 5, "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"], - "status": "ok", "resolvers": {"ipv4": "139.162.130.5, 139.162.131.5, 139.162.132.5, - 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5, 139.162.137.5, 139.162.138.5, - 139.162.139.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, - 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, - "placement_group_limits": {"maximum_pgs_per_customer": 5, "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"], "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": 5, "maximum_linodes_per_pg": - 5}, "site_type": "core"}], "page": 1, "pages": 1, "results": 25}' + 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast", + "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5, + 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}], "page": 1, "pages": 1, "results": 27}' headers: Access-Control-Allow-Credentials: - "true" @@ -269,7 +291,7 @@ interactions: Content-Type: - application/json Expires: - - Mon, 29 Apr 2024 17:28:41 GMT + - Mon, 01 Jul 2024 18:13:13 GMT Pragma: - no-cache Strict-Transport-Security: @@ -307,7 +329,7 @@ interactions: url: https://api.linode.com/v4beta/lke/clusters method: POST response: - body: '{"id": 173796, "status": "ready", "created": "2018-01-02T03:04:05", "updated": + body: '{"id": 196071, "status": "ready", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "label": "go-test-def", "region": "ap-west", "k8s_version": "1.29", "control_plane": {"high_availability": false}, "tags": ["testing"]}' headers: @@ -332,7 +354,7 @@ interactions: Content-Type: - application/json Expires: - - Mon, 29 Apr 2024 17:29:09 GMT + - Mon, 01 Jul 2024 18:13:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -365,7 +387,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/173796/control_plane_acl + url: https://api.linode.com/v4beta/lke/clusters/196071/control_plane_acl method: GET response: body: '{"acl": {"enabled": true, "addresses": {"ipv4": ["10.0.0.1/32"], "ipv6": @@ -392,7 +414,7 @@ interactions: Content-Type: - application/json Expires: - - Mon, 29 Apr 2024 17:29:10 GMT + - Mon, 01 Jul 2024 18:13:24 GMT Pragma: - no-cache Strict-Transport-Security: @@ -417,7 +439,7 @@ interactions: code: 200 duration: "" - request: - body: '{"acl":{"enabled":true,"addresses":{"ipv4":["10.0.0.2/32"]}}}' + body: '{"acl":{"enabled":true,"addresses":{"ipv4":["10.0.0.2/32"],"ipv6":[]}}}' form: {} headers: Accept: @@ -426,7 +448,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/173796/control_plane_acl + url: https://api.linode.com/v4beta/lke/clusters/196071/control_plane_acl method: PUT response: body: '{"acl": {"enabled": true, "addresses": {"ipv4": ["10.0.0.2/32"]}}}' @@ -452,7 +474,7 @@ interactions: Content-Type: - application/json Expires: - - Mon, 29 Apr 2024 17:29:13 GMT + - Mon, 01 Jul 2024 18:13:27 GMT Pragma: - no-cache Strict-Transport-Security: @@ -485,7 +507,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/173796/control_plane_acl + url: https://api.linode.com/v4beta/lke/clusters/196071/control_plane_acl method: DELETE response: body: '{}' @@ -511,7 +533,7 @@ interactions: Content-Type: - application/json Expires: - - Mon, 29 Apr 2024 17:29:15 GMT + - Mon, 01 Jul 2024 18:13:29 GMT Pragma: - no-cache Strict-Transport-Security: @@ -544,7 +566,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/173796/control_plane_acl + url: https://api.linode.com/v4beta/lke/clusters/196071/control_plane_acl method: GET response: body: '{"acl": {"enabled": false, "addresses": null}}' @@ -570,7 +592,7 @@ interactions: Content-Type: - application/json Expires: - - Mon, 29 Apr 2024 17:29:16 GMT + - Mon, 01 Jul 2024 18:13:30 GMT Pragma: - no-cache Strict-Transport-Security: @@ -604,7 +626,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/173796 + url: https://api.linode.com/v4beta/lke/clusters/196071 method: DELETE response: body: '{}' @@ -630,7 +652,7 @@ interactions: Content-Type: - application/json Expires: - - Mon, 29 Apr 2024 17:29:38 GMT + - Mon, 01 Jul 2024 18:13:34 GMT Pragma: - no-cache Strict-Transport-Security: diff --git a/test/integration/fixtures/TestLKEClusters_List.yaml b/test/integration/fixtures/TestLKEClusters_List.yaml index 10efced1e..677090e01 100644 --- a/test/integration/fixtures/TestLKEClusters_List.yaml +++ b/test/integration/fixtures/TestLKEClusters_List.yaml @@ -14,56 +14,263 @@ interactions: url: https://api.linode.com/v4beta/regions method: GET response: - body: '{"data": [{"id": "ap-west", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ca-central", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ap-southeast", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-central", "country": "us", "capabilities": ["Linodes", "NodeBalancers", - "Block Storage", "Kubernetes", "Cloud Firewall", "Block Storage Migrations", - "Managed Databases"], "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", "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", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", + "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", + "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5, + 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5, + 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5, + 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5, + 172.105.11.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5, + 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, + 172.105.161.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium + Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, + 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, + 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", + "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status": + "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, + 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label": + "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-east", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status": + "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18, + 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label": + "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Bare Metal", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "eu-west", "country": "uk", "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", "country": "sg", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, + 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label": + "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, + 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country": + "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38, + 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30, + 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22, + 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21, + 172.232.128.27", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25, + 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18, + 172.233.111.9", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20, + 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label": + "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "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", "country": "de", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46, + 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label": + "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24, + 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label": + "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32, + 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label": + "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21, + 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label": + "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34, + 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label": + "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50, + 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51, + 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32, + 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central", + "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5, + 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, + 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, + 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5, + 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::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"], "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", "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": 11}' + "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"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU + Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5, + 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5, + 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast", + "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5, + 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}], "page": 1, "pages": 1, "results": 27}' headers: Access-Control-Allow-Credentials: - "true" @@ -76,19 +283,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, 01 Jul 2024 18:19:10 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: @@ -99,14 +310,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-lke-test-list","region":"ap-west","k8s_version":"1.23","tags":["testing"]}' + body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-lke-test-list","region":"ap-west","k8s_version":"1.29","tags":["testing"]}' form: {} headers: Accept: @@ -118,9 +329,9 @@ interactions: url: https://api.linode.com/v4beta/lke/clusters method: POST response: - body: '{"id": 76169, "status": "ready", "created": "2018-01-02T03:04:05", "updated": + body: '{"id": 196080, "status": "ready", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "label": "go-lke-test-list", "region": "ap-west", "k8s_version": - "1.23", "control_plane": {"high_availability": false}, "tags": ["testing"]}' + "1.29", "control_plane": {"high_availability": false}, "tags": ["testing"]}' headers: Access-Control-Allow-Credentials: - "true" @@ -133,15 +344,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: - - "241" + - "242" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:19:20 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -156,7 +371,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -172,12 +387,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters + url: https://api.linode.com/v4beta/lke/clusters?page=1 method: GET response: - body: '{"data": [{"id": 76169, "status": "ready", "created": "2018-01-02T03:04:05", + body: '{"data": [{"id": 196080, "status": "ready", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "label": "go-lke-test-list", "region": "ap-west", - "k8s_version": "1.23", "control_plane": {"high_availability": false}, "tags": + "k8s_version": "1.29", "control_plane": {"high_availability": false}, "tags": ["testing"]}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -191,16 +406,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "290" + - "291" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 18:19:20 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -216,7 +434,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -232,7 +450,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76169 + url: https://api.linode.com/v4beta/lke/clusters/196080 method: DELETE response: body: '{}' @@ -248,15 +466,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, 01 Jul 2024 18:19:24 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -271,7 +493,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/TestLKENodePoolNode_Delete.yaml b/test/integration/fixtures/TestLKENodePoolNode_Delete.yaml index b4d380565..dddf86287 100644 --- a/test/integration/fixtures/TestLKENodePoolNode_Delete.yaml +++ b/test/integration/fixtures/TestLKENodePoolNode_Delete.yaml @@ -14,56 +14,263 @@ interactions: url: https://api.linode.com/v4beta/regions method: GET response: - body: '{"data": [{"id": "ap-west", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ca-central", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ap-southeast", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-central", "country": "us", "capabilities": ["Linodes", "NodeBalancers", - "Block Storage", "Kubernetes", "Cloud Firewall", "Block Storage Migrations", - "Managed Databases"], "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", "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", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", + "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", + "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5, + 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5, + 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5, + 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5, + 172.105.11.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5, + 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, + 172.105.161.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium + Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, + 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, + 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", + "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status": + "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, + 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label": + "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-east", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status": + "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18, + 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label": + "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Bare Metal", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "eu-west", "country": "uk", "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", "country": "sg", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, + 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label": + "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, + 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country": + "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38, + 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30, + 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22, + 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21, + 172.232.128.27", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25, + 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18, + 172.233.111.9", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20, + 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label": + "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "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", "country": "de", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46, + 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label": + "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24, + 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label": + "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32, + 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label": + "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21, + 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label": + "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34, + 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label": + "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50, + 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51, + 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32, + 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central", + "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5, + 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, + 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, + 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5, + 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::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"], "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", "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": 11}' + "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"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU + Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5, + 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5, + 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast", + "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5, + 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}], "page": 1, "pages": 1, "results": 27}' headers: Access-Control-Allow-Credentials: - "true" @@ -76,19 +283,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, 01 Jul 2024 17:49:37 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: @@ -99,14 +310,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-lke-test-def","region":"ap-west","k8s_version":"1.23","tags":["testing"]}' + body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-lke-test-def","region":"ap-west","k8s_version":"1.29","tags":["testing"]}' form: {} headers: Accept: @@ -118,9 +329,9 @@ interactions: url: https://api.linode.com/v4beta/lke/clusters method: POST response: - body: '{"id": 76172, "status": "ready", "created": "2018-01-02T03:04:05", "updated": + body: '{"id": 196063, "status": "ready", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "label": "go-lke-test-def", "region": "ap-west", "k8s_version": - "1.23", "control_plane": {"high_availability": false}, "tags": ["testing"]}' + "1.29", "control_plane": {"high_availability": false}, "tags": ["testing"]}' headers: Access-Control-Allow-Credentials: - "true" @@ -133,15 +344,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: - - "240" + - "241" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 17:49:47 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -156,7 +371,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -172,13 +387,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76172/pools + url: https://api.linode.com/v4beta/lke/clusters/196063/pools method: POST response: - body: '{"id": 118362, "type": "g6-standard-2", "count": 2, "nodes": [{"id": "118362-63483a962f5f", - "instance_id": 39523226, "status": "not_ready"}, {"id": "118362-63483a970178", - "instance_id": null, "status": "not_ready"}], "disks": [{"size": 1000, "type": - "ext4"}], "autoscaler": {"enabled": false, "min": 2, "max": 2}, "tags": ["testing"]}' + body: '{"id": 281816, "type": "g6-standard-2", "count": 2, "nodes": [{"id": "281816-161d644c0000", + "instance_id": 60897389, "status": "not_ready"}, {"id": "281816-2ca013c20000", + "instance_id": 60897390, "status": "not_ready"}], "disks": [{"size": 1000, "type": + "ext4"}], "autoscaler": {"enabled": false, "min": 2, "max": 2}, "labels": {}, + "taints": [], "tags": ["testing"]}' headers: Access-Control-Allow-Credentials: - "true" @@ -191,15 +407,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: - - "334" + - "366" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 17:49:50 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -214,7 +434,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -230,7 +450,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76172/nodes/118362-63483a962f5f + url: https://api.linode.com/v4beta/lke/clusters/196063/nodes/281816-161d644c0000 method: DELETE response: body: '{}' @@ -246,15 +466,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, 01 Jul 2024 17:49:52 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,7 +493,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -285,12 +509,13 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76172/pools/118362 + url: https://api.linode.com/v4beta/lke/clusters/196063/pools/281816 method: GET response: - body: '{"id": 118362, "type": "g6-standard-2", "count": 1, "nodes": [{"id": "118362-63483a970178", - "instance_id": 39523228, "status": "not_ready"}], "disks": [{"size": 1000, "type": - "ext4"}], "autoscaler": {"enabled": false, "min": 2, "max": 2}, "tags": ["testing"]}' + body: '{"id": 281816, "type": "g6-standard-2", "count": 1, "nodes": [{"id": "281816-2ca013c20000", + "instance_id": 60897390, "status": "not_ready"}], "disks": [{"size": 1000, "type": + "ext4"}], "autoscaler": {"enabled": false, "min": 2, "max": 2}, "labels": {}, + "taints": [], "tags": ["testing"]}' headers: Access-Control-Allow-Credentials: - "true" @@ -303,16 +528,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "259" + - "287" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 17:49:53 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -328,7 +556,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -344,7 +572,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76172/pools/118362 + url: https://api.linode.com/v4beta/lke/clusters/196063/pools/281816 method: DELETE response: body: '{}' @@ -360,15 +588,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, 01 Jul 2024 17:49:55 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -383,7 +615,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -399,7 +631,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76172 + url: https://api.linode.com/v4beta/lke/clusters/196063 method: DELETE response: body: '{}' @@ -415,15 +647,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, 01 Jul 2024 17:49:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -438,7 +674,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/TestLKENodePool_GetFound.yaml b/test/integration/fixtures/TestLKENodePool_GetFound.yaml index bec222748..15cccada0 100644 --- a/test/integration/fixtures/TestLKENodePool_GetFound.yaml +++ b/test/integration/fixtures/TestLKENodePool_GetFound.yaml @@ -14,56 +14,263 @@ interactions: url: https://api.linode.com/v4beta/regions method: GET response: - body: '{"data": [{"id": "ap-west", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ca-central", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ap-southeast", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-central", "country": "us", "capabilities": ["Linodes", "NodeBalancers", - "Block Storage", "Kubernetes", "Cloud Firewall", "Block Storage Migrations", - "Managed Databases"], "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", "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", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", + "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", + "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5, + 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5, + 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5, + 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5, + 172.105.11.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5, + 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, + 172.105.161.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium + Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, + 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, + 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", + "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status": + "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, + 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label": + "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-east", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status": + "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18, + 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label": + "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Bare Metal", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "eu-west", "country": "uk", "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", "country": "sg", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, + 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label": + "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, + 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country": + "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38, + 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30, + 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22, + 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21, + 172.232.128.27", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25, + 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18, + 172.233.111.9", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20, + 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label": + "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "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", "country": "de", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46, + 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label": + "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24, + 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label": + "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32, + 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label": + "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21, + 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label": + "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34, + 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label": + "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50, + 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51, + 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32, + 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central", + "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5, + 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, + 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, + 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5, + 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::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"], "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", "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": 11}' + "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"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU + Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5, + 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5, + 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast", + "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5, + 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}], "page": 1, "pages": 1, "results": 27}' headers: Access-Control-Allow-Credentials: - "true" @@ -76,19 +283,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, 01 Jul 2024 17:48:56 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: @@ -99,14 +310,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-lke-test-def","region":"ap-west","k8s_version":"1.23","tags":["testing"]}' + body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-lke-test-def","region":"ap-west","k8s_version":"1.29","tags":["testing"]}' form: {} headers: Accept: @@ -118,9 +329,9 @@ interactions: url: https://api.linode.com/v4beta/lke/clusters method: POST response: - body: '{"id": 76170, "status": "ready", "created": "2018-01-02T03:04:05", "updated": + body: '{"id": 196061, "status": "ready", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "label": "go-lke-test-def", "region": "ap-west", "k8s_version": - "1.23", "control_plane": {"high_availability": false}, "tags": ["testing"]}' + "1.29", "control_plane": {"high_availability": false}, "tags": ["testing"]}' headers: Access-Control-Allow-Credentials: - "true" @@ -133,15 +344,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: - - "240" + - "241" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 17:49:06 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -156,7 +371,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -172,13 +387,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76170/pools + url: https://api.linode.com/v4beta/lke/clusters/196061/pools method: POST response: - body: '{"id": 118358, "type": "g6-standard-2", "count": 2, "nodes": [{"id": "118358-63483a5f4cbe", - "instance_id": null, "status": "not_ready"}, {"id": "118358-63483a601b59", "instance_id": - null, "status": "not_ready"}], "disks": [{"size": 1000, "type": "ext4"}], "autoscaler": - {"enabled": false, "min": 2, "max": 2}, "tags": ["testing"]}' + body: '{"id": 281812, "type": "g6-standard-2", "count": 2, "nodes": [{"id": "281812-041f3fd60000", + "instance_id": 60897334, "status": "not_ready"}, {"id": "281812-398413ad0000", + "instance_id": 60897335, "status": "not_ready"}], "disks": [{"size": 1000, "type": + "ext4"}], "autoscaler": {"enabled": false, "min": 2, "max": 2}, "labels": {}, + "taints": [], "tags": ["testing"]}' headers: Access-Control-Allow-Credentials: - "true" @@ -191,15 +407,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: - - "330" + - "366" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 17:49:09 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -214,7 +434,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -230,13 +450,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76170/pools/118358 + url: https://api.linode.com/v4beta/lke/clusters/196061/pools/281812 method: GET response: - body: '{"id": 118358, "type": "g6-standard-2", "count": 2, "nodes": [{"id": "118358-63483a5f4cbe", - "instance_id": 39523193, "status": "not_ready"}, {"id": "118358-63483a601b59", - "instance_id": null, "status": "not_ready"}], "disks": [{"size": 1000, "type": - "ext4"}], "autoscaler": {"enabled": false, "min": 2, "max": 2}, "tags": ["testing"]}' + body: '{"id": 281812, "type": "g6-standard-2", "count": 2, "nodes": [{"id": "281812-041f3fd60000", + "instance_id": 60897334, "status": "not_ready"}, {"id": "281812-398413ad0000", + "instance_id": 60897335, "status": "not_ready"}], "disks": [{"size": 1000, "type": + "ext4"}], "autoscaler": {"enabled": false, "min": 2, "max": 2}, "labels": {}, + "taints": [], "tags": ["testing"]}' headers: Access-Control-Allow-Credentials: - "true" @@ -249,16 +470,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "334" + - "366" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 17:49:10 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -274,7 +498,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -290,7 +514,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76170/pools/118358 + url: https://api.linode.com/v4beta/lke/clusters/196061/pools/281812 method: DELETE response: body: '{}' @@ -306,15 +530,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, 01 Jul 2024 17:49:12 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -329,7 +557,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -345,7 +573,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76170 + url: https://api.linode.com/v4beta/lke/clusters/196061 method: DELETE response: body: '{}' @@ -361,15 +589,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, 01 Jul 2024 17:49:16 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -384,7 +616,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/TestLKENodePool_GetMissing.yaml b/test/integration/fixtures/TestLKENodePool_GetMissing.yaml index 8f1c91bf1..35c426cc4 100644 --- a/test/integration/fixtures/TestLKENodePool_GetMissing.yaml +++ b/test/integration/fixtures/TestLKENodePool_GetMissing.yaml @@ -23,13 +23,17 @@ interactions: Access-Control-Allow-Origin: - '*' Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "37" Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 17:48:55 GMT + Pragma: + - no-cache Vary: - Authorization, X-Filter X-Accepted-Oauth-Scopes: @@ -39,7 +43,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" status: 404 Not Found code: 404 duration: "" diff --git a/test/integration/fixtures/TestLKENodePool_Update.yaml b/test/integration/fixtures/TestLKENodePool_Update.yaml index 5eadb3537..f93a126df 100644 --- a/test/integration/fixtures/TestLKENodePool_Update.yaml +++ b/test/integration/fixtures/TestLKENodePool_Update.yaml @@ -14,56 +14,263 @@ interactions: url: https://api.linode.com/v4beta/regions method: GET response: - body: '{"data": [{"id": "ap-west", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ca-central", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ap-southeast", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-central", "country": "us", "capabilities": ["Linodes", "NodeBalancers", - "Block Storage", "Kubernetes", "Cloud Firewall", "Block Storage Migrations", - "Managed Databases"], "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", "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", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", + "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", + "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5, + 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5, + 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5, + 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5, + 172.105.11.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5, + 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, + 172.105.161.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium + Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, + 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, + 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", + "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status": + "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, + 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label": + "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-east", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status": + "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18, + 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label": + "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Bare Metal", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "eu-west", "country": "uk", "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", "country": "sg", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, + 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label": + "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, + 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country": + "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38, + 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30, + 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22, + 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21, + 172.232.128.27", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25, + 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18, + 172.233.111.9", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20, + 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label": + "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "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", "country": "de", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46, + 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label": + "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24, + 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label": + "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32, + 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label": + "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21, + 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label": + "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34, + 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label": + "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50, + 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51, + 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32, + 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central", + "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5, + 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, + 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, + 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5, + 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::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"], "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", "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": 11}' + "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"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU + Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5, + 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5, + 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast", + "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5, + 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}], "page": 1, "pages": 1, "results": 27}' headers: Access-Control-Allow-Credentials: - "true" @@ -76,19 +283,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, 01 Jul 2024 17:49:59 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: @@ -99,14 +310,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-lke-test-def","region":"ap-west","k8s_version":"1.23","tags":["testing"]}' + body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-lke-test-def","region":"ap-west","k8s_version":"1.29","tags":["testing"]}' form: {} headers: Accept: @@ -118,9 +329,9 @@ interactions: url: https://api.linode.com/v4beta/lke/clusters method: POST response: - body: '{"id": 76173, "status": "ready", "created": "2018-01-02T03:04:05", "updated": + body: '{"id": 196064, "status": "ready", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "label": "go-lke-test-def", "region": "ap-west", "k8s_version": - "1.23", "control_plane": {"high_availability": false}, "tags": ["testing"]}' + "1.29", "control_plane": {"high_availability": false}, "tags": ["testing"]}' headers: Access-Control-Allow-Credentials: - "true" @@ -133,15 +344,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: - - "240" + - "241" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 17:50:10 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -156,7 +371,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -172,13 +387,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76173/pools + url: https://api.linode.com/v4beta/lke/clusters/196064/pools method: POST response: - body: '{"id": 118365, "type": "g6-standard-2", "count": 2, "nodes": [{"id": "118365-63483ab318f8", - "instance_id": null, "status": "not_ready"}, {"id": "118365-63483ab3eaa0", "instance_id": - null, "status": "not_ready"}], "disks": [{"size": 1000, "type": "ext4"}], "autoscaler": - {"enabled": false, "min": 2, "max": 2}, "tags": ["testing"]}' + body: '{"id": 281818, "type": "g6-standard-2", "count": 2, "nodes": [{"id": "281818-311827560000", + "instance_id": 60897409, "status": "not_ready"}, {"id": "281818-46e0d5dc0000", + "instance_id": 60897407, "status": "not_ready"}], "disks": [{"size": 1000, "type": + "ext4"}], "autoscaler": {"enabled": false, "min": 2, "max": 2}, "labels": {}, + "taints": [], "tags": ["testing"]}' headers: Access-Control-Allow-Credentials: - "true" @@ -191,15 +407,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: - - "330" + - "366" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 17:50:13 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -214,7 +434,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -230,13 +450,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76173/pools/118365 + url: https://api.linode.com/v4beta/lke/clusters/196064/pools/281818 method: PUT response: - body: '{"id": 118365, "type": "g6-standard-2", "count": 2, "nodes": [{"id": "118365-63483ab318f8", - "instance_id": 39523246, "status": "not_ready"}, {"id": "118365-63483ab3eaa0", - "instance_id": 39523247, "status": "not_ready"}], "disks": [{"size": 1000, "type": - "ext4"}], "autoscaler": {"enabled": true, "min": 2, "max": 5}, "tags": []}' + body: '{"id": 281818, "type": "g6-standard-2", "count": 2, "nodes": [{"id": "281818-311827560000", + "instance_id": 60897409, "status": "not_ready"}, {"id": "281818-46e0d5dc0000", + "instance_id": 60897407, "status": "not_ready"}], "disks": [{"size": 1000, "type": + "ext4"}], "autoscaler": {"enabled": true, "min": 2, "max": 5}, "labels": {}, + "taints": [], "tags": []}' headers: Access-Control-Allow-Credentials: - "true" @@ -249,15 +470,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: - - "328" + - "356" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 17:50:15 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -272,7 +497,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -288,15 +513,15 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76173/pools/118365 + url: https://api.linode.com/v4beta/lke/clusters/196064/pools/281818 method: PUT response: - body: '{"id": 118365, "type": "g6-standard-2", "count": 3, "nodes": [{"id": "118365-63483ab318f8", - "instance_id": 39523246, "status": "not_ready"}, {"id": "118365-63483ab3eaa0", - "instance_id": 39523247, "status": "not_ready"}, {"id": "118365-63483ab82d2f", - "instance_id": null, "status": "not_ready"}], "disks": [{"size": 1000, "type": - "ext4"}], "autoscaler": {"enabled": true, "min": 2, "max": 5}, "tags": ["bar", - "foo", "test"]}' + body: '{"id": 281818, "type": "g6-standard-2", "count": 3, "nodes": [{"id": "281818-136aeb0a0000", + "instance_id": 60897411, "status": "not_ready"}, {"id": "281818-311827560000", + "instance_id": 60897409, "status": "not_ready"}, {"id": "281818-46e0d5dc0000", + "instance_id": 60897407, "status": "not_ready"}], "disks": [{"size": 1000, "type": + "ext4"}], "autoscaler": {"enabled": true, "min": 2, "max": 5}, "labels": {}, + "taints": [], "tags": ["bar", "foo", "test"]}' headers: Access-Control-Allow-Credentials: - "true" @@ -309,15 +534,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: - - "423" + - "455" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 17:50:19 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -332,7 +561,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -348,7 +577,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76173/pools/118365 + url: https://api.linode.com/v4beta/lke/clusters/196064/pools/281818 method: DELETE response: body: '{}' @@ -364,15 +593,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, 01 Jul 2024 17:50:22 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -387,7 +620,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -403,7 +636,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76173 + url: https://api.linode.com/v4beta/lke/clusters/196064 method: DELETE response: body: '{}' @@ -419,15 +652,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, 01 Jul 2024 17:50:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -442,7 +679,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/TestLKENodePools_List.yaml b/test/integration/fixtures/TestLKENodePools_List.yaml index a9e31d6ed..3f965b122 100644 --- a/test/integration/fixtures/TestLKENodePools_List.yaml +++ b/test/integration/fixtures/TestLKENodePools_List.yaml @@ -14,56 +14,263 @@ interactions: url: https://api.linode.com/v4beta/regions method: GET response: - body: '{"data": [{"id": "ap-west", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ca-central", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "ap-southeast", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-central", "country": "us", "capabilities": ["Linodes", "NodeBalancers", - "Block Storage", "Kubernetes", "Cloud Firewall", "Block Storage Migrations", - "Managed Databases"], "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", "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", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", + "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", + "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5, + 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5, + 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5, + 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5, + 172.105.11.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5, + 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, + 172.105.161.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium + Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, + 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, + 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", + "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status": + "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, + 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label": + "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "us-east", "country": "us", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status": + "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18, + 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label": + "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Bare Metal", "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,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}}, - {"id": "eu-west", "country": "uk", "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", "country": "sg", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, + 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label": + "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, + 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country": + "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38, + 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30, + 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22, + 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21, + 172.232.128.27", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25, + 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18, + 172.233.111.9", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20, + 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label": + "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "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", "country": "de", "capabilities": ["Linodes", "NodeBalancers", + "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46, + 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label": + "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24, + 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label": + "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32, + 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label": + "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21, + 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label": + "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34, + 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label": + "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50, + 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51, + 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": + "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32, + 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34", + "ipv6": "1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central", + "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5, + 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], + "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, + 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, + 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5, + 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::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"], "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", "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": 11}' + "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"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU + Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5, + 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5, + 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast", + "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": + {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5, + 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": + "core"}], "page": 1, "pages": 1, "results": 27}' headers: Access-Control-Allow-Credentials: - "true" @@ -76,19 +283,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, 01 Jul 2024 17:49:16 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: @@ -99,14 +310,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-lke-test-def","region":"ap-west","k8s_version":"1.23","tags":["testing"]}' + body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-lke-test-def","region":"ap-west","k8s_version":"1.29","tags":["testing"]}' form: {} headers: Accept: @@ -118,9 +329,9 @@ interactions: url: https://api.linode.com/v4beta/lke/clusters method: POST response: - body: '{"id": 76171, "status": "ready", "created": "2018-01-02T03:04:05", "updated": + body: '{"id": 196062, "status": "ready", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "label": "go-lke-test-def", "region": "ap-west", "k8s_version": - "1.23", "control_plane": {"high_availability": false}, "tags": ["testing"]}' + "1.29", "control_plane": {"high_availability": false}, "tags": ["testing"]}' headers: Access-Control-Allow-Credentials: - "true" @@ -133,15 +344,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: - - "240" + - "241" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 17:49:26 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -156,7 +371,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -172,13 +387,14 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76171/pools + url: https://api.linode.com/v4beta/lke/clusters/196062/pools method: POST response: - body: '{"id": 118360, "type": "g6-standard-2", "count": 2, "nodes": [{"id": "118360-63483a7a95f3", - "instance_id": null, "status": "not_ready"}, {"id": "118360-63483a7b6526", "instance_id": - null, "status": "not_ready"}], "disks": [{"size": 1000, "type": "ext4"}], "autoscaler": - {"enabled": false, "min": 2, "max": 2}, "tags": ["testing"]}' + body: '{"id": 281814, "type": "g6-standard-2", "count": 2, "nodes": [{"id": "281814-5f12d2810000", + "instance_id": 60897367, "status": "not_ready"}, {"id": "281814-659f45320000", + "instance_id": 60897366, "status": "not_ready"}], "disks": [{"size": 1000, "type": + "ext4"}], "autoscaler": {"enabled": false, "min": 2, "max": 2}, "labels": {}, + "taints": [], "tags": ["testing"]}' headers: Access-Control-Allow-Credentials: - "true" @@ -191,15 +407,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: - - "330" + - "366" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 17:49:29 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -214,7 +434,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -230,17 +450,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76171/pools + url: https://api.linode.com/v4beta/lke/clusters/196062/pools?page=1 method: GET response: - body: '{"data": [{"id": 118359, "type": "g6-standard-2", "count": 1, "nodes": - [{"id": "118359-63483a79a0e4", "instance_id": 39523208, "status": "not_ready"}], - "disks": [], "autoscaler": {"enabled": false, "min": 1, "max": 1}, "tags": ["test"]}, - {"id": 118360, "type": "g6-standard-2", "count": 2, "nodes": [{"id": "118360-63483a7a95f3", - "instance_id": 39523209, "status": "not_ready"}, {"id": "118360-63483a7b6526", - "instance_id": null, "status": "not_ready"}], "disks": [{"size": 1000, "type": - "ext4"}], "autoscaler": {"enabled": false, "min": 2, "max": 2}, "tags": ["testing"]}], - "page": 1, "pages": 1, "results": 2}' + body: '{"data": [{"id": 281813, "type": "g6-standard-2", "count": 1, "nodes": + [{"id": "281813-363fb2140000", "instance_id": 60897364, "status": "not_ready"}], + "disks": [], "autoscaler": {"enabled": false, "min": 1, "max": 1}, "labels": + {}, "taints": [], "tags": ["test"]}, {"id": 281814, "type": "g6-standard-2", + "count": 2, "nodes": [{"id": "281814-5f12d2810000", "instance_id": 60897367, + "status": "not_ready"}, {"id": "281814-659f45320000", "instance_id": 60897366, + "status": "not_ready"}], "disks": [{"size": 1000, "type": "ext4"}], "autoscaler": + {"enabled": false, "min": 2, "max": 2}, "labels": {}, "taints": [], "tags": + ["testing"]}], "page": 1, "pages": 1, "results": 2}' headers: Access-Control-Allow-Credentials: - "true" @@ -253,16 +474,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "611" + - "671" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 17:49:30 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -278,7 +502,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -294,7 +518,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76171/pools/118360 + url: https://api.linode.com/v4beta/lke/clusters/196062/pools/281814 method: DELETE response: body: '{}' @@ -310,15 +534,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, 01 Jul 2024 17:49:32 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -333,7 +561,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -349,7 +577,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/clusters/76171 + url: https://api.linode.com/v4beta/lke/clusters/196062 method: DELETE response: body: '{}' @@ -365,15 +593,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, 01 Jul 2024 17:49:37 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -388,7 +620,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/TestLKEVersions_List.yaml b/test/integration/fixtures/TestLKEVersions_List.yaml index 112ebffa8..43168c487 100644 --- a/test/integration/fixtures/TestLKEVersions_List.yaml +++ b/test/integration/fixtures/TestLKEVersions_List.yaml @@ -11,10 +11,11 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/lke/versions + url: https://api.linode.com/v4beta/lke/versions?page=1 method: GET response: - body: '{"data": [{"id": "1.23"}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [{"id": "1.30"}, {"id": "1.29"}, {"id": "1.28"}], "page": 1, "pages": + 1, "results": 3}' headers: Access-Control-Allow-Credentials: - "true" @@ -27,16 +28,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "63" + - "95" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Wed, 03 Jul 2024 19:57:34 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -52,7 +56,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/TestLongviewClient_Create.yaml b/test/integration/fixtures/TestLongviewClient_Create.yaml index 067291c56..5440cc57c 100644 --- a/test/integration/fixtures/TestLongviewClient_Create.yaml +++ b/test/integration/fixtures/TestLongviewClient_Create.yaml @@ -14,8 +14,8 @@ interactions: url: https://api.linode.com/v4beta/longview/clients method: POST response: - body: '{"id": 297873, "label": "testing", "api_key": "274D7DEB-393F-4AE8-AC231D11B441BE5F", - "install_code": "659AE7C6-D98F-420A-B293031726EF75D1", "apps": {"apache": 0, + body: '{"id": 342826, "label": "testing", "api_key": "DD873740-C520-49DE-825B296BA2ABCED7", + "install_code": "AACFFDDF-C094-4A3C-8288B2883AEECFC1", "apps": {"apache": 0, "nginx": 0, "mysql": 0}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' headers: Access-Control-Allow-Credentials: @@ -29,15 +29,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: - "254" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 19:30:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -52,7 +56,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -68,11 +72,11 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/longview/clients/297873 + url: https://api.linode.com/v4beta/longview/clients/342826 method: GET response: - body: '{"id": 297873, "label": "testing", "api_key": "274D7DEB-393F-4AE8-AC231D11B441BE5F", - "install_code": "659AE7C6-D98F-420A-B293031726EF75D1", "apps": {"apache": false, + body: '{"id": 342826, "label": "testing", "api_key": "DD873740-C520-49DE-825B296BA2ABCED7", + "install_code": "AACFFDDF-C094-4A3C-8288B2883AEECFC1", "apps": {"apache": false, "nginx": false, "mysql": false}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' headers: @@ -87,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: - "266" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 19:31:00 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -112,7 +119,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -128,7 +135,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/longview/clients/297873 + url: https://api.linode.com/v4beta/longview/clients/342826 method: DELETE response: body: '{}' @@ -144,15 +151,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, 01 Jul 2024 19:31:00 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -167,7 +178,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/TestLongviewClient_Delete.yaml b/test/integration/fixtures/TestLongviewClient_Delete.yaml index da91ee48c..b50aa4c1b 100644 --- a/test/integration/fixtures/TestLongviewClient_Delete.yaml +++ b/test/integration/fixtures/TestLongviewClient_Delete.yaml @@ -14,8 +14,8 @@ interactions: url: https://api.linode.com/v4beta/longview/clients method: POST response: - body: '{"id": 297875, "label": "testing", "api_key": "2B2EB2AD-C41B-4722-853D15EBA92B191B", - "install_code": "82B4250B-86D5-4825-AAEFC9AB6A825052", "apps": {"apache": 0, + body: '{"id": 342827, "label": "testing", "api_key": "41828261-BFF9-4B4F-8FFCCC356F7A62D8", + "install_code": "67B4F710-089D-4F40-964E6D1002E6CE4F", "apps": {"apache": 0, "nginx": 0, "mysql": 0}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' headers: Access-Control-Allow-Credentials: @@ -29,15 +29,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: - "254" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 19:31:00 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -52,7 +56,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -68,11 +72,11 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/longview/clients/297875 + url: https://api.linode.com/v4beta/longview/clients/342827 method: GET response: - body: '{"id": 297875, "label": "testing", "api_key": "2B2EB2AD-C41B-4722-853D15EBA92B191B", - "install_code": "82B4250B-86D5-4825-AAEFC9AB6A825052", "apps": {"apache": false, + body: '{"id": 342827, "label": "testing", "api_key": "41828261-BFF9-4B4F-8FFCCC356F7A62D8", + "install_code": "67B4F710-089D-4F40-964E6D1002E6CE4F", "apps": {"apache": false, "nginx": false, "mysql": false}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' headers: @@ -87,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: - "266" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 19:31:00 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -112,7 +119,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -128,7 +135,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/longview/clients/297875 + url: https://api.linode.com/v4beta/longview/clients/342827 method: DELETE response: body: '{}' @@ -144,15 +151,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, 01 Jul 2024 19:31:00 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -167,7 +178,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -183,7 +194,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/longview/clients + url: https://api.linode.com/v4beta/longview/clients?page=1 method: GET response: body: '{"data": [], "page": 1, "pages": 1, "results": 0}' @@ -199,16 +210,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=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, 01 Jul 2024 19:31:01 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -224,7 +238,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/TestLongviewClient_Get.yaml b/test/integration/fixtures/TestLongviewClient_Get.yaml index 8619b9f40..1b3daeb07 100644 --- a/test/integration/fixtures/TestLongviewClient_Get.yaml +++ b/test/integration/fixtures/TestLongviewClient_Get.yaml @@ -14,8 +14,8 @@ interactions: url: https://api.linode.com/v4beta/longview/clients method: POST response: - body: '{"id": 297872, "label": "testing", "api_key": "D8AD6A15-AD2C-4DC0-BC981E738E988264", - "install_code": "EE8FF29F-758D-49B5-ABD783AE322950D2", "apps": {"apache": 0, + body: '{"id": 342825, "label": "testing", "api_key": "4A7B4DBA-34E5-446C-963198CC554782F0", + "install_code": "2902DFC9-1952-4BB7-98FA2943795A82F9", "apps": {"apache": 0, "nginx": 0, "mysql": 0}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' headers: Access-Control-Allow-Credentials: @@ -29,15 +29,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: - "254" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 19:30:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -52,7 +56,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -68,11 +72,11 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/longview/clients/297872 + url: https://api.linode.com/v4beta/longview/clients/342825 method: GET response: - body: '{"id": 297872, "label": "testing", "api_key": "D8AD6A15-AD2C-4DC0-BC981E738E988264", - "install_code": "EE8FF29F-758D-49B5-ABD783AE322950D2", "apps": {"apache": false, + body: '{"id": 342825, "label": "testing", "api_key": "4A7B4DBA-34E5-446C-963198CC554782F0", + "install_code": "2902DFC9-1952-4BB7-98FA2943795A82F9", "apps": {"apache": false, "nginx": false, "mysql": false}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' headers: @@ -87,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: - "266" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 19:30:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -112,7 +119,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -128,11 +135,11 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/longview/clients + url: https://api.linode.com/v4beta/longview/clients?page=1 method: GET response: - body: '{"data": [{"id": 297872, "label": "testing", "api_key": "D8AD6A15-AD2C-4DC0-BC981E738E988264", - "install_code": "EE8FF29F-758D-49B5-ABD783AE322950D2", "apps": {"apache": false, + body: '{"data": [{"id": 342825, "label": "testing", "api_key": "4A7B4DBA-34E5-446C-963198CC554782F0", + "install_code": "2902DFC9-1952-4BB7-98FA2943795A82F9", "apps": {"apache": false, "nginx": false, "mysql": false}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}], "page": 1, "pages": 1, "results": 1}' headers: @@ -147,16 +154,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - private, max-age=60, s-maxage=60 + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - "315" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 19:30:58 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -172,7 +182,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -188,7 +198,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/longview/clients/297872 + url: https://api.linode.com/v4beta/longview/clients/342825 method: DELETE response: body: '{}' @@ -204,15 +214,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, 01 Jul 2024 19:30:59 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -227,7 +241,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/TestLongviewClient_Update.yaml b/test/integration/fixtures/TestLongviewClient_Update.yaml index e9a618485..55c89ec47 100644 --- a/test/integration/fixtures/TestLongviewClient_Update.yaml +++ b/test/integration/fixtures/TestLongviewClient_Update.yaml @@ -14,8 +14,8 @@ interactions: url: https://api.linode.com/v4beta/longview/clients method: POST response: - body: '{"id": 297876, "label": "testing", "api_key": "9B4E29A0-E339-4E16-A86540CD6F847A31", - "install_code": "8BCA03D4-307D-4899-B22F58C6C28700BE", "apps": {"apache": 0, + body: '{"id": 342828, "label": "testing", "api_key": "720ADF39-D75A-47E9-958E98F14C9A40D8", + "install_code": "BD08C3CB-F9E7-4C0B-B1C88256375692C0", "apps": {"apache": 0, "nginx": 0, "mysql": 0}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' headers: Access-Control-Allow-Credentials: @@ -29,15 +29,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: - "254" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 19:31:01 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -52,7 +56,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -68,11 +72,11 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/longview/clients/297876 + url: https://api.linode.com/v4beta/longview/clients/342828 method: PUT response: - body: '{"id": 297876, "label": "testing_updated", "api_key": "9B4E29A0-E339-4E16-A86540CD6F847A31", - "install_code": "8BCA03D4-307D-4899-B22F58C6C28700BE", "apps": {"apache": false, + body: '{"id": 342828, "label": "testing_updated", "api_key": "720ADF39-D75A-47E9-958E98F14C9A40D8", + "install_code": "BD08C3CB-F9E7-4C0B-B1C88256375692C0", "apps": {"apache": false, "nginx": false, "mysql": false}, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}' headers: @@ -87,15 +91,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: - "274" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 19:31:01 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -110,7 +118,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -126,7 +134,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/longview/clients/297876 + url: https://api.linode.com/v4beta/longview/clients/342828 method: DELETE response: body: '{}' @@ -142,15 +150,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, 01 Jul 2024 19:31:01 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -165,7 +177,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/TestLongviewPlan_Get.yaml b/test/integration/fixtures/TestLongviewPlan_Get.yaml index f3c958513..6857c4bf6 100644 --- a/test/integration/fixtures/TestLongviewPlan_Get.yaml +++ b/test/integration/fixtures/TestLongviewPlan_Get.yaml @@ -27,16 +27,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - 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, 01 Jul 2024 19:30:20 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -52,7 +55,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/TestLongviewPlan_Update.yaml b/test/integration/fixtures/TestLongviewPlan_Update.yaml index 1a3cf9fec..54e8a5846 100644 --- a/test/integration/fixtures/TestLongviewPlan_Update.yaml +++ b/test/integration/fixtures/TestLongviewPlan_Update.yaml @@ -27,16 +27,19 @@ interactions: Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status Cache-Control: - - private, max-age=0, s-maxage=0, no-cache, no-store - - 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, 01 Jul 2024 19:30:20 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -52,7 +55,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -85,15 +88,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: - "122" Content-Security-Policy: - default-src 'none' Content-Type: - application/json - Server: - - nginx + Expires: + - Mon, 01 Jul 2024 19:30:21 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -108,7 +115,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -140,15 +147,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, 01 Jul 2024 19:30:21 GMT + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000 Vary: @@ -163,7 +174,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "800" + - "400" X-Xss-Protection: - 1; mode=block status: 200 OK diff --git a/test/integration/lke_clusters_test.go b/test/integration/lke_clusters_test.go index 244ffdcd6..49f0c15f1 100644 --- a/test/integration/lke_clusters_test.go +++ b/test/integration/lke_clusters_test.go @@ -74,8 +74,8 @@ func TestLKECluster_Update(t *testing.T) { updatedTags := []string{"test=true"} updatedLabel := cluster.Label + "-updated" - updatedK8sVersion := "1.23" - isHA := true + updatedK8sVersion := "1.30" + isHA := false updatedControlPlane := &linodego.LKEClusterControlPlaneOptions{HighAvailability: &isHA} diff --git a/test/integration/mysql_test.go b/test/integration/mysql_test.go index e32278355..d1fbbaa06 100644 --- a/test/integration/mysql_test.go +++ b/test/integration/mysql_test.go @@ -179,7 +179,7 @@ func createMySQLDatabase(t *testing.T, client *linodego.Client, t.Helper() createOpts := linodego.MySQLCreateOptions{ - Label: "go-mysql-test-def", + Label: "go-mysql-test-def" + randLabel(), Region: getRegionsWithCaps(t, client, []string{"Managed Databases"})[0], Type: "g6-nanode-1", Engine: "mysql/8.0.30",