From 7f1781ba80dccf568b808cd42af4020774ddac61 Mon Sep 17 00:00:00 2001
From: Ye Chen <127243817+yec-akamai@users.noreply.github.com>
Date: Fri, 9 Aug 2024 11:32:53 -0400
Subject: [PATCH] Project: Images Service Gen2 (#560)
* new: Add support for Images Gen. 2 (#526)
* WIP
oops
* Add unit test case
* Drop go.work.sum from source tree
* oops
* Add tags to ImageUploadOptions
* Separate ImageStatus from ImageRegionStatus
* Fix tests; add WaitForImageRegionStatus
* image replication test with upload image; use getRegionsWithCaps when available
* modified replication tests to use uploaded image; use random regions when available
* fix fixtures
* clean up
* sanitize fixture
* revert ipv6 pool fixture change
---------
Co-authored-by: Lena Garber <114949949+lgarber-akamai@users.noreply.github.com>
---
images.go | 119 +-
.../fixtures/TestAccountAvailability_Get.yaml | 9 +-
.../TestAccountAvailability_List.yaml | 32 +-
.../fixtures/TestAccountBetaPrograms.yaml | 129 +-
.../fixtures/TestAccountEvents_List.yaml | 464 +++---
.../fixtures/TestAccountLogins_List.yaml | 63 +-
.../TestAccountNotifications_List.yaml | 17 +-
.../integration/fixtures/TestAccount_Get.yaml | 24 +-
.../fixtures/TestBetaProgram_Get.yaml | 74 +-
.../fixtures/TestBetaPrograms_List.yaml | 40 +-
.../fixtures/TestCache_Expiration.yaml | 16 +-
.../fixtures/TestCache_RegionList.yaml | 1248 +++++++++--------
.../fixtures/TestDatabase_Engine.yaml | 240 ++--
.../fixtures/TestDatabase_Type.yaml | 238 ++--
.../fixtures/TestDomainRecord_Create.yaml | 83 +-
.../fixtures/TestDomainRecord_Get.yaml | 107 +-
.../fixtures/TestDomainRecord_Update.yaml | 110 +-
.../fixtures/TestDomainRecords_List.yaml | 108 +-
.../TestDomainRecords_ListMultiplePages.yaml | 108 +-
.../fixtures/TestDomain_Create.yaml | 41 +-
test/integration/fixtures/TestDomain_Get.yaml | 66 +-
.../fixtures/TestDomain_Update.yaml | 65 +-
.../fixtures/TestDomain_ZoneFile_Get.yaml | 61 +-
.../fixtures/TestDomains_List.yaml | 71 +-
.../fixtures/TestFirewallDevice_Delete.yaml | 489 ++++---
.../fixtures/TestFirewallDevice_Get.yaml | 484 ++++---
.../fixtures/TestFirewallDevices_List.yaml | 436 +++---
.../fixtures/TestFirewallRules_Get.yaml | 64 +-
.../fixtures/TestFirewallRules_Update.yaml | 86 +-
.../fixtures/TestFirewall_Get.yaml | 66 +-
.../fixtures/TestFirewall_Update.yaml | 65 +-
.../fixtures/TestFirewalls_List.yaml | 158 ++-
.../TestIPAddresses_Instance_Get.yaml | 525 ++++---
.../fixtures/TestIPAddresses_List.yaml | 607 +++++---
.../fixtures/TestIPv6Range_Instance_List.yaml | 466 +++---
.../fixtures/TestIPv6Range_Share.yaml | 529 ++++---
.../fixtures/TestImage_CloudInit.yaml | 572 ++++----
.../fixtures/TestImage_CreateUpload.yaml | 472 ++++---
.../fixtures/TestImage_GetFound.yaml | 4 +-
.../fixtures/TestImage_GetMissing.yaml | 4 +-
.../fixtures/TestImage_Replicate.yaml | 619 ++++++++
.../fixtures/TestImage_Upload.yaml | 119 +-
.../integration/fixtures/TestImages_List.yaml | 188 ++-
.../fixtures/TestInstanceBackups_List.yaml | 1213 ++++++++--------
.../fixtures/TestInstanceFirewalls_List.yaml | 448 +++---
.../TestInstance_ConfigInterface_Update.yaml | 497 ++++---
...nstance_ConfigInterfaces_AppendDelete.yaml | 502 ++++---
.../TestInstance_ConfigInterfaces_List.yaml | 498 ++++---
...TestInstance_ConfigInterfaces_Reorder.yaml | 513 ++++---
.../TestInstance_ConfigInterfaces_Update.yaml | 525 ++++---
.../fixtures/TestInstance_Config_Update.yaml | 441 +++---
.../fixtures/TestInstance_Configs_List.yaml | 490 ++++---
.../fixtures/TestInstance_Disk_Resize.yaml | 585 +++++---
.../fixtures/TestInstance_Resize.yaml | 597 ++++----
.../fixtures/TestInstances_List.yaml | 475 ++++---
.../fixtures/TestNodeBalancerNode_Create.yaml | 443 +++---
.../TestNodeBalancerNode_CreateInstance.yaml | 475 ++++---
.../fixtures/TestNodeBalancers_List.yaml | 436 +++---
.../fixtures/TestOAuthClient_GetFound.yaml | 22 +-
.../fixtures/TestOAuthClient_GetMissing.yaml | 4 +-
.../fixtures/TestOAuthClients_List.yaml | 43 +-
.../fixtures/TestPayment_GetFound.yaml | 4 +-
.../fixtures/TestPayment_GetMissing.yaml | 93 +-
.../fixtures/TestPayments_List.yaml | 120 +-
.../fixtures/TestUserGrants_Update.yaml | 78 +-
.../TestUserGrants_UpdateNoAccess.yaml | 80 +-
test/integration/fixtures/TestUser_Get.yaml | 52 +-
.../fixtures/TestUser_GetMissing.yaml | 17 +-
.../integration/fixtures/TestUser_Update.yaml | 51 +-
test/integration/fixtures/TestUsers_List.yaml | 141 +-
.../fixtures/TestVLANs_GetIPAMAddress.yaml | 432 +++---
test/integration/fixtures/TestVLANs_List.yaml | 489 ++++---
.../fixtures/TestVolume_Resize.yaml | 612 ++++----
test/integration/images_test.go | 69 +-
test/unit/images_test.go | 61 +
waitfor.go | 35 +
76 files changed, 11919 insertions(+), 8108 deletions(-)
create mode 100644 test/integration/fixtures/TestImage_Replicate.yaml
create mode 100644 test/unit/images_test.go
diff --git a/images.go b/images.go
index 6ff8a3a89..dd1d5f3fa 100644
--- a/images.go
+++ b/images.go
@@ -20,37 +20,69 @@ const (
ImageStatusAvailable ImageStatus = "available"
)
+// ImageRegionStatus represents the status of an Image's replica.
+type ImageRegionStatus string
+
+// ImageRegionStatus options start with ImageRegionStatus and
+// include all Image replica statuses
+const (
+ ImageRegionStatusAvailable ImageRegionStatus = "available"
+ ImageRegionStatusCreating ImageRegionStatus = "creating"
+ ImageRegionStatusPending ImageRegionStatus = "pending"
+ ImageRegionStatusPendingReplication ImageRegionStatus = "pending replication"
+ ImageRegionStatusPendingDeletion ImageRegionStatus = "pending deletion"
+ ImageRegionStatusReplicating ImageRegionStatus = "replicating"
+)
+
+// ImageRegion represents the status of an Image object in a given Region.
+type ImageRegion struct {
+ Region string `json:"region"`
+ Status ImageRegionStatus `json:"status"`
+}
+
// Image represents a deployable Image object for use with Linode Instances
type Image struct {
- ID string `json:"id"`
- CreatedBy string `json:"created_by"`
- Capabilities []string `json:"capabilities"`
- Label string `json:"label"`
- Description string `json:"description"`
- Type string `json:"type"`
- Vendor string `json:"vendor"`
- Status ImageStatus `json:"status"`
- Size int `json:"size"`
- IsPublic bool `json:"is_public"`
- Deprecated bool `json:"deprecated"`
- Updated *time.Time `json:"-"`
- Created *time.Time `json:"-"`
- Expiry *time.Time `json:"-"`
- EOL *time.Time `json:"-"`
+ ID string `json:"id"`
+ CreatedBy string `json:"created_by"`
+ Capabilities []string `json:"capabilities"`
+ Label string `json:"label"`
+ Description string `json:"description"`
+ Type string `json:"type"`
+ Vendor string `json:"vendor"`
+ Status ImageStatus `json:"status"`
+ Size int `json:"size"`
+ TotalSize int `json:"total_size"`
+ IsPublic bool `json:"is_public"`
+ Deprecated bool `json:"deprecated"`
+ Regions []ImageRegion `json:"regions"`
+ Tags []string `json:"tags"`
+
+ Updated *time.Time `json:"-"`
+ Created *time.Time `json:"-"`
+ Expiry *time.Time `json:"-"`
+ EOL *time.Time `json:"-"`
}
// ImageCreateOptions fields are those accepted by CreateImage
type ImageCreateOptions struct {
- DiskID int `json:"disk_id"`
- Label string `json:"label"`
- Description string `json:"description,omitempty"`
- CloudInit bool `json:"cloud_init,omitempty"`
+ DiskID int `json:"disk_id"`
+ Label string `json:"label"`
+ Description string `json:"description,omitempty"`
+ CloudInit bool `json:"cloud_init,omitempty"`
+ Tags *[]string `json:"tags,omitempty"`
}
// ImageUpdateOptions fields are those accepted by UpdateImage
type ImageUpdateOptions struct {
- Label string `json:"label,omitempty"`
- Description *string `json:"description,omitempty"`
+ Label string `json:"label,omitempty"`
+ Description *string `json:"description,omitempty"`
+ Tags *[]string `json:"tags,omitempty"`
+}
+
+// ImageReplicateOptions represents the options accepted by the
+// ReplicateImage(...) function.
+type ImageReplicateOptions struct {
+ Regions []string `json:"regions"`
}
// ImageCreateUploadResponse fields are those returned by CreateImageUpload
@@ -61,18 +93,20 @@ type ImageCreateUploadResponse struct {
// ImageCreateUploadOptions fields are those accepted by CreateImageUpload
type ImageCreateUploadOptions struct {
- Region string `json:"region"`
- Label string `json:"label"`
- Description string `json:"description,omitempty"`
- CloudInit bool `json:"cloud_init,omitempty"`
+ Region string `json:"region"`
+ Label string `json:"label"`
+ Description string `json:"description,omitempty"`
+ CloudInit bool `json:"cloud_init,omitempty"`
+ Tags *[]string `json:"tags,omitempty"`
}
// ImageUploadOptions fields are those accepted by UploadImage
type ImageUploadOptions struct {
- Region string `json:"region"`
- Label string `json:"label"`
- Description string `json:"description,omitempty"`
- CloudInit bool `json:"cloud_init"`
+ Region string `json:"region"`
+ Label string `json:"label"`
+ Description string `json:"description,omitempty"`
+ CloudInit bool `json:"cloud_init"`
+ Tags *[]string `json:"tags,omitempty"`
Image io.Reader
}
@@ -109,7 +143,7 @@ func (i Image) GetUpdateOptions() (iu ImageUpdateOptions) {
return
}
-// ListImages lists Images
+// ListImages lists Images.
func (c *Client) ListImages(ctx context.Context, opts *ListOptions) ([]Image, error) {
return getPaginatedResults[Image](
ctx,
@@ -119,7 +153,7 @@ func (c *Client) ListImages(ctx context.Context, opts *ListOptions) ([]Image, er
)
}
-// GetImage gets the Image with the provided ID
+// GetImage gets the Image with the provided ID.
func (c *Client) GetImage(ctx context.Context, imageID string) (*Image, error) {
return doGETRequest[Image](
ctx,
@@ -128,7 +162,7 @@ func (c *Client) GetImage(ctx context.Context, imageID string) (*Image, error) {
)
}
-// CreateImage creates an Image
+// CreateImage creates an Image.
func (c *Client) CreateImage(ctx context.Context, opts ImageCreateOptions) (*Image, error) {
return doPOSTRequest[Image](
ctx,
@@ -138,7 +172,7 @@ func (c *Client) CreateImage(ctx context.Context, opts ImageCreateOptions) (*Ima
)
}
-// UpdateImage updates the Image with the specified id
+// UpdateImage updates the Image with the specified id.
func (c *Client) UpdateImage(ctx context.Context, imageID string, opts ImageUpdateOptions) (*Image, error) {
return doPUTRequest[Image](
ctx,
@@ -148,7 +182,17 @@ func (c *Client) UpdateImage(ctx context.Context, imageID string, opts ImageUpda
)
}
-// DeleteImage deletes the Image with the specified id
+// ReplicateImage replicates an image to a given set of regions.
+func (c *Client) ReplicateImage(ctx context.Context, imageID string, opts ImageReplicateOptions) (*Image, error) {
+ return doPOSTRequest[Image](
+ ctx,
+ c,
+ formatAPIPath("images/%s/regions", imageID),
+ opts,
+ )
+}
+
+// DeleteImage deletes the Image with the specified id.
func (c *Client) DeleteImage(ctx context.Context, imageID string) error {
return doDELETERequest(
ctx,
@@ -157,7 +201,7 @@ func (c *Client) DeleteImage(ctx context.Context, imageID string) error {
)
}
-// CreateImageUpload creates an Image and an upload URL
+// CreateImageUpload creates an Image and an upload URL.
func (c *Client) CreateImageUpload(ctx context.Context, opts ImageCreateUploadOptions) (*Image, string, error) {
result, err := doPOSTRequest[ImageCreateUploadResponse](
ctx,
@@ -172,7 +216,7 @@ func (c *Client) CreateImageUpload(ctx context.Context, opts ImageCreateUploadOp
return result.Image, result.UploadTo, nil
}
-// UploadImageToURL uploads the given image to the given upload URL
+// UploadImageToURL uploads the given image to the given upload URL.
func (c *Client) UploadImageToURL(ctx context.Context, uploadURL string, image io.Reader) error {
// Linode-specific headers do not need to be sent to this endpoint
req := resty.New().SetDebug(c.resty.Debug).R().
@@ -187,13 +231,14 @@ func (c *Client) UploadImageToURL(ctx context.Context, uploadURL string, image i
return err
}
-// UploadImage creates and uploads an image
+// UploadImage creates and uploads an image.
func (c *Client) UploadImage(ctx context.Context, opts ImageUploadOptions) (*Image, error) {
image, uploadURL, err := c.CreateImageUpload(ctx, ImageCreateUploadOptions{
Label: opts.Label,
Region: opts.Region,
Description: opts.Description,
CloudInit: opts.CloudInit,
+ Tags: opts.Tags,
})
if err != nil {
return nil, err
diff --git a/test/integration/fixtures/TestAccountAvailability_Get.yaml b/test/integration/fixtures/TestAccountAvailability_Get.yaml
index 06ae98b96..9e95a7e28 100644
--- a/test/integration/fixtures/TestAccountAvailability_Get.yaml
+++ b/test/integration/fixtures/TestAccountAvailability_Get.yaml
@@ -27,6 +27,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -38,7 +40,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 17 Jun 2024 15:46:53 GMT
+ - Thu, 25 Jul 2024 17:44:02 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -54,7 +56,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestAccountAvailability_List.yaml b/test/integration/fixtures/TestAccountAvailability_List.yaml
index b5d9e7f9d..7fb406381 100644
--- a/test/integration/fixtures/TestAccountAvailability_List.yaml
+++ b/test/integration/fixtures/TestAccountAvailability_List.yaml
@@ -31,8 +31,8 @@ interactions:
["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"], "unavailable":
[]}, {"region": "ap-southeast", "available": ["Linodes", "NodeBalancers", "Block
Storage", "Kubernetes"], "unavailable": []}, {"region": "us-iad", "available":
- ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"], "unavailable":
- []}, {"region": "us-ord", "available": ["Linodes", "NodeBalancers", "Block Storage",
+ ["Linodes", "NodeBalancers", "Block Storage"], "unavailable": ["Kubernetes"]},
+ {"region": "us-ord", "available": ["Linodes", "NodeBalancers", "Block Storage",
"Kubernetes"], "unavailable": []}, {"region": "fr-par", "available": ["Linodes",
"NodeBalancers", "Block Storage", "Kubernetes"], "unavailable": []}, {"region":
"us-sea", "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
@@ -50,10 +50,21 @@ interactions:
"Kubernetes"], "unavailable": []}, {"region": "id-cgk", "available": ["Linodes",
"NodeBalancers", "Block Storage", "Kubernetes"], "unavailable": []}, {"region":
"us-lax", "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
- "unavailable": []}, {"region": "gb-lon", "available": ["Linodes", "NodeBalancers",
- "Block Storage", "Kubernetes"], "unavailable": []}, {"region": "au-mel", "available":
- ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"], "unavailable":
- []}], "page": 1, "pages": 1, "results": 27}'
+ "unavailable": []}, {"region": "us-den-edge-1", "available": ["Linodes"], "unavailable":
+ ["NodeBalancers", "Block Storage", "Kubernetes"]}, {"region": "de-ham-edge-1",
+ "available": ["Linodes"], "unavailable": ["NodeBalancers", "Block Storage",
+ "Kubernetes"]}, {"region": "fr-mrs-edge-1", "available": ["Linodes"], "unavailable":
+ ["NodeBalancers", "Block Storage", "Kubernetes"]}, {"region": "za-jnb-edge-1",
+ "available": ["Linodes"], "unavailable": ["NodeBalancers", "Block Storage",
+ "Kubernetes"]}, {"region": "my-kul-edge-1", "available": ["Linodes"], "unavailable":
+ ["NodeBalancers", "Block Storage", "Kubernetes"]}, {"region": "co-bog-edge-1",
+ "available": ["Linodes"], "unavailable": ["NodeBalancers", "Block Storage",
+ "Kubernetes"]}, {"region": "mx-qro-edge-1", "available": ["Linodes"], "unavailable":
+ ["NodeBalancers", "Block Storage", "Kubernetes"]}, {"region": "us-hou-edge-1",
+ "available": ["Linodes"], "unavailable": ["NodeBalancers", "Block Storage",
+ "Kubernetes"]}, {"region": "cl-scl-edge-1", "available": ["Linodes"], "unavailable":
+ ["NodeBalancers", "Block Storage", "Kubernetes"]}], "page": 1, "pages": 1, "results":
+ 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -65,6 +76,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -74,7 +87,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 17 Jun 2024 15:46:53 GMT
+ - Thu, 25 Jul 2024 17:44:02 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -91,7 +104,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestAccountBetaPrograms.yaml b/test/integration/fixtures/TestAccountBetaPrograms.yaml
index 5625f5244..eaa1c5741 100644
--- a/test/integration/fixtures/TestAccountBetaPrograms.yaml
+++ b/test/integration/fixtures/TestAccountBetaPrograms.yaml
@@ -14,21 +14,16 @@ interactions:
url: https://api.linode.com/v4beta/betas?page=1
method: GET
response:
- body: '{"data": [{"id": "global_load_balancer_beta", "label": "Akamai Global Load
- Balancer Pre-Registration", "description": "The Akamai Cloud Load Balancer (ACLB)
- (formerly referred to as Akamai Global Load Balancer) is a layer 4 and 7 load
- balancer that distributes traffic based on performance, weight, and content
- (HTTP headers, query strings, etc.). The ACLB is a multi-region, multicloud,
- independent of Akamai Delivery, and built for East-West and North-South traffic.
- Key features include multi-region load balancing and method selection. Beta
- for this product is coming soon\u2013 sign up to be contacted first when ACLB
- is available.\r\n\r\nPlease note: Akamai Cloud Load Balancer is not currently
- available in beta testing. By signing up to participate in this beta when it
- becomes available, you consent to be subscribed to receive emails from Akamai
- cloud computing services marketing and be contacted via email when the beta
- period begins.", "started": "2018-01-02T03:04:05", "ended": null, "greenlight_only":
- false, "more_info": "https://www.linode.com/green-light/"}], "page": 1, "pages":
- 1, "results": 1}'
+ body: '{"data": [{"id": "rtx_4000_ada_beta", "label": "NVIDIA RTX 4000 Ada Series
+ GPU Beta", "description": "Our new cloud GPUs are available to a limited number
+ of customers for early access. Powered by the NVIDIA Quadro RTX 4000 Ada generation
+ GPU cards, these GPUs are optimized for media workloads such as media transcoding,
+ but fit a range of use cases for parallelization such as training for AI models
+ and data analysis. If accepted for early access participation, you will be notified
+ via support ticket with instructions and resources. Beta GPUs are subject to
+ standard charges.", "started": "2018-01-02T03:04:05", "ended": null, "greenlight_only":
+ false, "more_info": "https://www.linode.com/docs/products/compute/compute-instances/plans/gpu/"}],
+ "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -40,16 +35,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
+ Content-Length:
+ - "786"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 17 Jun 2024 15:46:53 GMT
+ - Thu, 25 Jul 2024 17:44:02 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -57,7 +56,6 @@ interactions:
Vary:
- Authorization, X-Filter
- Authorization, X-Filter
- - Accept-Encoding
X-Accepted-Oauth-Scopes:
- '*'
X-Content-Type-Options:
@@ -66,7 +64,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -75,7 +76,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"id":"global_load_balancer_beta"}'
+ body: '{"id":"rtx_4000_ada_beta"}'
form: {}
headers:
Accept:
@@ -99,6 +100,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -110,7 +113,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 17 Jun 2024 15:46:53 GMT
+ - Thu, 25 Jul 2024 17:44:02 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -125,7 +128,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -146,24 +152,32 @@ interactions:
url: https://api.linode.com/v4beta/account/betas?page=1
method: GET
response:
- body: '{"data": [{"id": "global_load_balancer_beta", "label": "Akamai Global Load
- Balancer Pre-Registration", "enrolled": "2018-01-02T03:04:05", "description":
- "The Akamai Cloud Load Balancer (ACLB) (formerly referred to as Akamai Global
- Load Balancer) is a layer 4 and 7 load balancer that distributes traffic based
- on performance, weight, and content (HTTP headers, query strings, etc.). The
- ACLB is a multi-region, multicloud, independent of Akamai Delivery, and built
- for East-West and North-South traffic. Key features include multi-region load
- balancing and method selection. Beta for this product is coming soon\u2013 sign
- up to be contacted first when ACLB is available.\r\n\r\nPlease note: Akamai
+ body: '{"data": [{"id": "rtx_4000_ada_beta", "label": "NVIDIA RTX 4000 Ada Series
+ GPU Beta", "enrolled": "2018-01-02T03:04:05", "description": "Our new cloud
+ GPUs are available to a limited number of customers for early access. Powered
+ by the NVIDIA Quadro RTX 4000 Ada generation GPU cards, these GPUs are optimized
+ for media workloads such as media transcoding, but fit a range of use cases
+ for parallelization such as training for AI models and data analysis. If accepted
+ for early access participation, you will be notified via support ticket with
+ instructions and resources. Beta GPUs are subject to standard charges.", "started":
+ "2018-01-02T03:04:05", "ended": null}, {"id": "global_load_balancer_beta", "label":
+ "Akamai Global Load Balancer Pre-Registration", "enrolled": "2018-01-02T03:04:05",
+ "description": "The Akamai Cloud Load Balancer (ACLB) (formerly referred to
+ as Akamai Global Load Balancer) is a layer 4 and 7 load balancer that distributes
+ traffic based on performance, weight, and content (HTTP headers, query strings,
+ etc.). The ACLB is a multi-region, multicloud, independent of Akamai Delivery,
+ and built for East-West and North-South traffic. Key features include multi-region
+ load balancing and method selection. Beta for this product is coming soon\u2013
+ sign up to be contacted first when ACLB is available.\r\n\r\nPlease note: Akamai
Cloud Load Balancer is not currently available in beta testing. By signing up
to participate in this beta when it becomes available, you consent to be subscribed
to receive emails from Akamai cloud computing services marketing and be contacted
via email when the beta period begins.", "started": "2018-01-02T03:04:05", "ended":
- null}, {"id": "vpc_beta", "label": "Virtual Private Cloud (VPC) Pre-Registration",
- "enrolled": "2018-01-02T03:04:05", "description": "VPC is now generally available
- for all customers. Select VPC in the side navigation to get started.", "started":
- "2018-01-02T03:04:05", "ended": "2018-01-02T03:04:05"}], "page": 1, "pages":
- 1, "results": 2}'
+ "2018-01-02T03:04:05"}, {"id": "vpc_beta", "label": "Virtual Private Cloud (VPC)
+ Pre-Registration", "enrolled": "2018-01-02T03:04:05", "description": "VPC is
+ now generally available for all customers. Select VPC in the side navigation
+ to get started.", "started": "2018-01-02T03:04:05", "ended": "2018-01-02T03:04:05"}],
+ "page": 1, "pages": 1, "results": 3}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -175,6 +189,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -184,7 +200,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 17 Jun 2024 15:46:53 GMT
+ - Thu, 25 Jul 2024 17:44:02 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -201,7 +217,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -219,22 +238,18 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/account/betas/global_load_balancer_beta
+ url: https://api.linode.com/v4beta/account/betas/rtx_4000_ada_beta
method: GET
response:
- body: '{"id": "global_load_balancer_beta", "label": "Akamai Global Load Balancer
- Pre-Registration", "enrolled": "2018-01-02T03:04:05", "description": "The Akamai
- Cloud Load Balancer (ACLB) (formerly referred to as Akamai Global Load Balancer)
- is a layer 4 and 7 load balancer that distributes traffic based on performance,
- weight, and content (HTTP headers, query strings, etc.). The ACLB is a multi-region,
- multicloud, independent of Akamai Delivery, and built for East-West and North-South
- traffic. Key features include multi-region load balancing and method selection.
- Beta for this product is coming soon\u2013 sign up to be contacted first when
- ACLB is available.\r\n\r\nPlease note: Akamai Cloud Load Balancer is not currently
- available in beta testing. By signing up to participate in this beta when it
- becomes available, you consent to be subscribed to receive emails from Akamai
- cloud computing services marketing and be contacted via email when the beta
- period begins.", "started": "2018-01-02T03:04:05", "ended": null}'
+ body: '{"id": "rtx_4000_ada_beta", "label": "NVIDIA RTX 4000 Ada Series GPU Beta",
+ "enrolled": "2018-01-02T03:04:05", "description": "Our new cloud GPUs are available
+ to a limited number of customers for early access. Powered by the NVIDIA Quadro
+ RTX 4000 Ada generation GPU cards, these GPUs are optimized for media workloads
+ such as media transcoding, but fit a range of use cases for parallelization
+ such as training for AI models and data analysis. If accepted for early access
+ participation, you will be notified via support ticket with instructions and
+ resources. Beta GPUs are subject to standard charges.", "started": "2018-01-02T03:04:05",
+ "ended": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -246,16 +261,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
+ Content-Length:
+ - "656"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 17 Jun 2024 15:46:53 GMT
+ - Thu, 25 Jul 2024 17:44:02 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -263,7 +282,6 @@ interactions:
Vary:
- Authorization, X-Filter
- Authorization, X-Filter
- - Accept-Encoding
X-Accepted-Oauth-Scopes:
- account:read_only
X-Content-Type-Options:
@@ -272,7 +290,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestAccountEvents_List.yaml b/test/integration/fixtures/TestAccountEvents_List.yaml
index c83939b34..67bd09208 100644
--- a/test/integration/fixtures/TestAccountEvents_List.yaml
+++ b/test/integration/fixtures/TestAccountEvents_List.yaml
@@ -17,260 +17,291 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
- "Managed Databases", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
"1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "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":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"],
- "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50, 172.236.0.47,
- 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51, 172.236.0.54,
- 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "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,
+ Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
+ 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
+ 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
+ "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
+ 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
+ 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -282,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -291,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 17 Jun 2024 15:46:53 GMT
+ - Thu, 25 Jul 2024 17:44:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -308,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -317,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-c26953m3akqo","root_pass":"}W9+7I4664C.t635^phH\u0026yzYnB946bQmp@Xx-?/Z@.f(4z}sC3UDpNBC(kw\\8?B9","image":"linode/debian9","firewall_id":567533,"booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-9t15okq9p55z","root_pass":"iV998k`L|Y\u003eRlFs2{u-!CN#2EfjT1JhS1Oe9hK\u003c12O3c376x)i2n-~U+]r-k+C4\u003c","image":"linode/debian9","firewall_id":692854,"booted":false}'
form: {}
headers:
Accept:
@@ -329,16 +365,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 60302854, "label": "go-test-ins-c26953m3akqo", "group": "", "status":
+ body: '{"id": 61874159, "label": "go-test-ins-9t15okq9p55z", "group": "", "status":
"provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.104.207.73"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "6833df95c5afc7bde87b97a18f8204e6eb2187f8", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["45.79.122.198"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
+ null, "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled":
+ true, "tags": [], "host_uuid": "0be889ff8efab8e9f1cbbb28b1799aa440e95149", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -350,18 +386,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "790"
+ - "810"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 17 Jun 2024 15:46:54 GMT
+ - Thu, 25 Jul 2024 17:44:04 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -376,7 +414,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -394,11 +435,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60302854/configs
+ url: https://api.linode.com/v4beta/linode/instances/61874159/configs
method: POST
response:
- body: '{"id": 63502443, "label": "test-config", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ body: '{"id": 65094623, "label": "test-config", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
@@ -415,18 +456,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "525"
+ - "526"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 17 Jun 2024 15:46:54 GMT
+ - Thu, 25 Jul 2024 17:44:04 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -441,7 +484,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -460,16 +506,16 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"action":"linode_config_create","entity.id":60302854,"entity.type":"linode"}'
+ - '{"action":"linode_config_create","entity.id":61874159,"entity.type":"linode"}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 746165972, "created": "2018-01-02T03:04:05", "seen": false,
+ body: '{"data": [{"id": 788220794, "created": "2018-01-02T03:04:05", "seen": false,
"read": false, "percent_complete": null, "time_remaining": null, "rate": null,
- "duration": null, "action": "linode_config_create", "username": "lgarber-dev",
- "entity": {"label": "go-test-ins-c26953m3akqo", "id": 60302854, "type": "linode",
- "url": "/v4/linode/instances/60302854"}, "status": "notification", "secondary_entity":
- {"id": 63502443, "type": "linode_config", "label": "test-config", "url": "/v4/linode/instances/60302854/configs/63502443"},
+ "duration": null, "action": "linode_config_create", "username": "ychen123",
+ "entity": {"label": "go-test-ins-9t15okq9p55z", "id": 61874159, "type": "linode",
+ "url": "/v4/linode/instances/61874159"}, "status": "notification", "secondary_entity":
+ {"id": 65094623, "type": "linode_config", "label": "test-config", "url": "/v4/linode/instances/61874159/configs/65094623"},
"message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -482,18 +528,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "581"
+ - "578"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 17 Jun 2024 15:46:54 GMT
+ - Thu, 25 Jul 2024 17:44:04 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -509,7 +557,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -527,7 +578,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60302854
+ url: https://api.linode.com/v4beta/linode/instances/61874159
method: DELETE
response:
body: '{}'
@@ -542,6 +593,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -553,7 +606,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 17 Jun 2024 15:46:54 GMT
+ - Thu, 25 Jul 2024 17:44:05 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -568,7 +621,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestAccountLogins_List.yaml b/test/integration/fixtures/TestAccountLogins_List.yaml
index 626aaa0f6..5a00a2d87 100644
--- a/test/integration/fixtures/TestAccountLogins_List.yaml
+++ b/test/integration/fixtures/TestAccountLogins_List.yaml
@@ -14,31 +14,18 @@ interactions:
url: https://api.linode.com/v4beta/account/logins?page=1
method: GET
response:
- body: '{"data": [{"id": 1570617688, "datetime": "2018-01-02T03:04:05", "ip": "1234::5678",
- "username": "lgarber-dev", "status": "successful", "restricted": false}, {"id":
- 1570661980, "datetime": "2018-01-02T03:04:05", "ip": "1234::5678",
- "username": "lgarber-dev", "status": "successful", "restricted": false}, {"id":
- 1570727356, "datetime": "2018-01-02T03:04:05", "ip": "1234::5678",
- "username": "lgarber-dev", "status": "successful", "restricted": false}, {"id":
- 1570740884, "datetime": "2018-01-02T03:04:05", "ip": "1234::5678",
- "username": "lgarber-dev", "status": "successful", "restricted": false}, {"id":
- 1570741777, "datetime": "2018-01-02T03:04:05", "ip": "1234::5678",
- "username": "lgarber-dev", "status": "successful", "restricted": false}, {"id":
- 1570925268, "datetime": "2018-01-02T03:04:05", "ip": "1234::5678",
- "username": "lgarber-dev", "status": "successful", "restricted": false}, {"id":
- 1571003920, "datetime": "2018-01-02T03:04:05", "ip": "1234::5678",
- "username": "lgarber-dev", "status": "successful", "restricted": false}, {"id":
- 1571045131, "datetime": "2018-01-02T03:04:05", "ip": "1234::5678",
- "username": "lgarber-dev", "status": "successful", "restricted": false}, {"id":
- 1571148324, "datetime": "2018-01-02T03:04:05", "ip": "1234::5678",
- "username": "lgarber-dev", "status": "successful", "restricted": false}, {"id":
- 1571641625, "datetime": "2018-01-02T03:04:05", "ip": "1234::5678",
- "username": "lgarber-dev", "status": "successful", "restricted": false}, {"id":
- 1571642229, "datetime": "2018-01-02T03:04:05", "ip": "1234::5678",
- "username": "lgarber-dev", "status": "successful", "restricted": false}, {"id":
- 1571656292, "datetime": "2018-01-02T03:04:05", "ip": "1234::5678",
- "username": "lgarber-dev", "status": "successful", "restricted": false}], "page":
- 1, "pages": 1, "results": 12}'
+ body: '{"data": [{"id": 1571371160, "datetime": "2018-01-02T03:04:05", "ip": "207.172.164.59",
+ "username": "ychen123", "status": "successful", "restricted": false}, {"id":
+ 1571930431, "datetime": "2018-01-02T03:04:05", "ip": "207.172.164.59", "username":
+ "ychen123", "status": "successful", "restricted": false}, {"id": 1572136305,
+ "datetime": "2018-01-02T03:04:05", "ip": "207.172.164.59", "username": "ychen123",
+ "status": "successful", "restricted": false}, {"id": 1572315925, "datetime":
+ "2018-01-02T03:04:05", "ip": "207.172.164.59", "username": "ychen123", "status":
+ "successful", "restricted": false}, {"id": 1572346753, "datetime": "2018-01-02T03:04:05",
+ "ip": "50.116.59.237", "username": "ychen123", "status": "successful", "restricted":
+ false}, {"id": 1572356544, "datetime": "2018-01-02T03:04:05", "ip": "50.116.59.237",
+ "username": "ychen123", "status": "successful", "restricted": false}], "page":
+ 1, "pages": 1, "results": 6}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -50,6 +37,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -59,7 +48,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 17 Jun 2024 15:46:55 GMT
+ - Thu, 25 Jul 2024 17:44:05 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -76,7 +65,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -94,11 +86,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/account/logins/1570617688
+ url: https://api.linode.com/v4beta/account/logins/1571371160
method: GET
response:
- body: '{"id": 1570617688, "datetime": "2018-01-02T03:04:05", "ip": "1234::5678",
- "username": "lgarber-dev", "status": "successful", "restricted": false}'
+ body: '{"id": 1571371160, "datetime": "2018-01-02T03:04:05", "ip": "207.172.164.59",
+ "username": "ychen123", "status": "successful", "restricted": false}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -110,18 +102,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "174"
+ - "146"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 17 Jun 2024 15:46:55 GMT
+ - Thu, 25 Jul 2024 17:44:05 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -137,7 +131,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestAccountNotifications_List.yaml b/test/integration/fixtures/TestAccountNotifications_List.yaml
index 312bf7946..f220ae7de 100644
--- a/test/integration/fixtures/TestAccountNotifications_List.yaml
+++ b/test/integration/fixtures/TestAccountNotifications_List.yaml
@@ -14,11 +14,7 @@ interactions:
url: https://api.linode.com/v4beta/account/notifications?page=1
method: GET
response:
- body: '{"pages": 1, "page": 1, "results": 1, "data": [{"type": "notice", "entity":
- null, "when": null, "message": "To use the Linode DNS Manager to serve your
- domains, you must have an active Linode on your account. See https://www.linode.com/docs/platform/manager/dns-manager/
- for more information.", "label": "Your domains are not being served.", "severity":
- "major", "until": null, "body": null}]}'
+ body: '{"pages": 1, "page": 1, "results": 0, "data": []}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -30,18 +26,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "465"
+ - "49"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 17 Jun 2024 19:46:05 GMT
+ - Thu, 25 Jul 2024 17:44:05 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -57,7 +55,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestAccount_Get.yaml b/test/integration/fixtures/TestAccount_Get.yaml
index d4f2c1415..748e13de2 100644
--- a/test/integration/fixtures/TestAccount_Get.yaml
+++ b/test/integration/fixtures/TestAccount_Get.yaml
@@ -14,15 +14,15 @@ interactions:
url: https://api.linode.com/v4beta/account
method: GET
response:
- body: '{"company": "Akamai", "email": "ykim@akamai.com", "first_name": "Youjung",
- "last_name": "Kim", "address_1": "", "address_2": "", "city": "", "state": "",
- "zip": "", "country": "", "phone": "", "balance": 0.0, "tax_id": "", "billing_source":
- "linode", "credit_card": {"last_four": null, "expiry": null}, "balance_uninvoiced":
- 0.0, "active_since": "2018-01-02T03:04:05", "capabilities": ["Linodes", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "LKE HA Control Planes", "Machine Images", "Managed Databases", "VPCs", "LKE
- Network Access Control List (IP ACL)", "Placement Group", "Object Storage Access
- Key Regions"], "active_promotions": [], "euuid": "F959AD74-9386-4827-A426975C90B4EBD5"}'
+ body: '{"company": "", "email": "yechen@akamai.com", "first_name": "", "last_name":
+ "", "address_1": "", "address_2": "", "city": "", "state": "", "zip": "", "country":
+ "", "phone": "", "balance": 0.0, "tax_id": "", "billing_source": "linode", "credit_card":
+ {"last_four": null, "expiry": null}, "balance_uninvoiced": 0.0, "active_since":
+ "2018-01-02T03:04:05", "capabilities": ["Linodes", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "LKE HA Control Planes",
+ "Machine Images", "VPCs", "LKE Network Access Control List (IP ACL)", "Placement
+ Group", "Object Storage Access Key Regions"], "active_promotions": [], "euuid":
+ "4D76E527-6B98-41BB-BE6936746C131930"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -34,18 +34,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "735"
+ - "700"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 20:41:57 GMT
+ - Thu, 25 Jul 2024 17:44:08 GMT
Pragma:
- no-cache
Strict-Transport-Security:
diff --git a/test/integration/fixtures/TestBetaProgram_Get.yaml b/test/integration/fixtures/TestBetaProgram_Get.yaml
index ba3de069a..c0838acb7 100644
--- a/test/integration/fixtures/TestBetaProgram_Get.yaml
+++ b/test/integration/fixtures/TestBetaProgram_Get.yaml
@@ -14,15 +14,16 @@ interactions:
url: https://api.linode.com/v4beta/betas?page=1
method: GET
response:
- body: '{"data": [{"id": "future_open", "label": "future open beta", "description":
- "An expired closed beta", "started": "2018-01-02T03:04:05", "ended": null, "greenlight_only":
- true, "more_info": "https://linode.com"}, {"id": "active_closed", "label": "active
- closed beta", "description": "An active closed beta", "started": "2018-01-02T03:04:05",
- "ended": null, "greenlight_only": true, "more_info": "a link with even more
- info"}, {"id": "limited", "label": "limited beta", "description": "An active
- limited beta", "started": "2018-01-02T03:04:05", "ended": null, "greenlight_only":
- false, "more_info": "a link with even more info"}], "page": 1, "pages": 1, "results":
- 3}'
+ body: '{"data": [{"id": "rtx_4000_ada_beta", "label": "NVIDIA RTX 4000 Ada Series
+ GPU Beta", "description": "Our new cloud GPUs are available to a limited number
+ of customers for early access. Powered by the NVIDIA Quadro RTX 4000 Ada generation
+ GPU cards, these GPUs are optimized for media workloads such as media transcoding,
+ but fit a range of use cases for parallelization such as training for AI models
+ and data analysis. If accepted for early access participation, you will be notified
+ via support ticket with instructions and resources. Beta GPUs are subject to
+ standard charges.", "started": "2018-01-02T03:04:05", "ended": null, "greenlight_only":
+ false, "more_info": "https://www.linode.com/docs/products/compute/compute-instances/plans/gpu/"}],
+ "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -34,19 +35,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=0, s-maxage=0, no-cache, no-store
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "786"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:17 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
@@ -57,7 +64,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -75,12 +85,18 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/betas/future_open
+ url: https://api.linode.com/v4beta/betas/rtx_4000_ada_beta
method: GET
response:
- body: '{"id": "future_open", "label": "future open beta", "description": "An expired
- closed beta", "started": "2018-01-02T03:04:05", "ended": null, "greenlight_only":
- true, "more_info": "https://linode.com"}'
+ body: '{"id": "rtx_4000_ada_beta", "label": "NVIDIA RTX 4000 Ada Series GPU Beta",
+ "description": "Our new cloud GPUs are available to a limited number of customers
+ for early access. Powered by the NVIDIA Quadro RTX 4000 Ada generation GPU cards,
+ these GPUs are optimized for media workloads such as media transcoding, but
+ fit a range of use cases for parallelization such as training for AI models
+ and data analysis. If accepted for early access participation, you will be notified
+ via support ticket with instructions and resources. Beta GPUs are subject to
+ standard charges.", "started": "2018-01-02T03:04:05", "ended": null, "greenlight_only":
+ false, "more_info": "https://www.linode.com/docs/products/compute/compute-instances/plans/gpu/"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -92,17 +108,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=0, s-maxage=0, no-cache, no-store
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
Content-Length:
- - "200"
+ - "737"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:18 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -116,7 +137,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestBetaPrograms_List.yaml b/test/integration/fixtures/TestBetaPrograms_List.yaml
index 0737ace54..2cfe40f16 100644
--- a/test/integration/fixtures/TestBetaPrograms_List.yaml
+++ b/test/integration/fixtures/TestBetaPrograms_List.yaml
@@ -14,15 +14,16 @@ interactions:
url: https://api.linode.com/v4beta/betas?page=1
method: GET
response:
- body: '{"data": [{"id": "future_open", "label": "future open beta", "description":
- "An expired closed beta", "started": "2018-01-02T03:04:05", "ended": null, "greenlight_only":
- true, "more_info": "https://linode.com"}, {"id": "active_closed", "label": "active
- closed beta", "description": "An active closed beta", "started": "2018-01-02T03:04:05",
- "ended": null, "greenlight_only": true, "more_info": "a link with even more
- info"}, {"id": "limited", "label": "limited beta", "description": "An active
- limited beta", "started": "2018-01-02T03:04:05", "ended": null, "greenlight_only":
- false, "more_info": "a link with even more info"}], "page": 1, "pages": 1, "results":
- 3}'
+ body: '{"data": [{"id": "rtx_4000_ada_beta", "label": "NVIDIA RTX 4000 Ada Series
+ GPU Beta", "description": "Our new cloud GPUs are available to a limited number
+ of customers for early access. Powered by the NVIDIA Quadro RTX 4000 Ada generation
+ GPU cards, these GPUs are optimized for media workloads such as media transcoding,
+ but fit a range of use cases for parallelization such as training for AI models
+ and data analysis. If accepted for early access participation, you will be notified
+ via support ticket with instructions and resources. Beta GPUs are subject to
+ standard charges.", "started": "2018-01-02T03:04:05", "ended": null, "greenlight_only":
+ false, "more_info": "https://www.linode.com/docs/products/compute/compute-instances/plans/gpu/"}],
+ "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -34,19 +35,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=0, s-maxage=0, no-cache, no-store
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "786"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:17 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
@@ -57,7 +64,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestCache_Expiration.yaml b/test/integration/fixtures/TestCache_Expiration.yaml
index ba37afe66..3f53492c5 100644
--- a/test/integration/fixtures/TestCache_Expiration.yaml
+++ b/test/integration/fixtures/TestCache_Expiration.yaml
@@ -283,7 +283,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 01 Jul 2024 15:46:43 GMT
+ - Thu, 25 Jul 2024 17:44:19 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -579,7 +579,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 01 Jul 2024 15:46:43 GMT
+ - Thu, 25 Jul 2024 17:44:19 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -888,7 +888,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 01 Jul 2024 15:46:43 GMT
+ - Thu, 25 Jul 2024 17:44:19 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1021,7 +1021,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 01 Jul 2024 15:46:43 GMT
+ - Thu, 25 Jul 2024 17:44:19 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1328,7 +1328,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 01 Jul 2024 15:46:43 GMT
+ - Thu, 25 Jul 2024 17:44:19 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1624,7 +1624,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 01 Jul 2024 15:46:43 GMT
+ - Thu, 25 Jul 2024 17:44:19 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1933,7 +1933,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 01 Jul 2024 15:46:43 GMT
+ - Thu, 25 Jul 2024 17:44:19 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2066,7 +2066,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 01 Jul 2024 15:46:43 GMT
+ - Thu, 25 Jul 2024 17:44:19 GMT
Pragma:
- no-cache
Strict-Transport-Security:
diff --git a/test/integration/fixtures/TestCache_RegionList.yaml b/test/integration/fixtures/TestCache_RegionList.yaml
index 2ad50ac32..96e4eda54 100644
--- a/test/integration/fixtures/TestCache_RegionList.yaml
+++ b/test/integration/fixtures/TestCache_RegionList.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62,
- 139.144.192.60, 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67,
- 139.144.192.69, 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::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"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
+ 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
+ "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"],
- "status": "ok", "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20,
- 172.232.128.22, 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18,
- 172.232.128.21, 172.232.128.27", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,46 +166,72 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
@@ -210,7 +239,7 @@ interactions:
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":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
@@ -218,7 +247,7 @@ interactions:
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,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
"maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
"Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
@@ -227,7 +256,7 @@ interactions:
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,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
"maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
@@ -236,7 +265,7 @@ interactions:
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":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
"gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
@@ -245,7 +274,7 @@ interactions:
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",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
"label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
@@ -254,25 +283,25 @@ interactions:
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",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
"label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "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,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
+ 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
+ 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}], "page": 1, "pages":
- 1, "results": 27}'
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -284,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -293,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 09 Jul 2024 15:39:07 GMT
+ - Thu, 25 Jul 2024 17:44:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -310,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -334,143 +368,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62,
- 139.144.192.60, 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67,
- 139.144.192.69, 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::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"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
+ 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
+ "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"],
- "status": "ok", "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20,
- 172.232.128.22, 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18,
- 172.232.128.21, 172.232.128.27", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -480,46 +517,72 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
@@ -527,7 +590,7 @@ interactions:
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":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
@@ -535,7 +598,7 @@ interactions:
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,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
"maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
"Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
@@ -544,7 +607,7 @@ interactions:
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,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
"maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
@@ -553,7 +616,7 @@ interactions:
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":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
"gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
@@ -562,7 +625,7 @@ interactions:
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",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
"label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
@@ -571,25 +634,25 @@ interactions:
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",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
"label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "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,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
+ 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
+ 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}], "page": 1, "pages":
- 1, "results": 27}'
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -601,6 +664,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -610,7 +675,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 09 Jul 2024 15:39:07 GMT
+ - Thu, 25 Jul 2024 17:44:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -627,7 +692,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -651,143 +719,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62,
- 139.144.192.60, 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67,
- 139.144.192.69, 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::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"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
+ 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
+ "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"],
- "status": "ok", "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20,
- 172.232.128.22, 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18,
- 172.232.128.21, 172.232.128.27", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -797,46 +868,72 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
@@ -844,7 +941,7 @@ interactions:
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":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
@@ -852,7 +949,7 @@ interactions:
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,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
"maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
"Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
@@ -861,7 +958,7 @@ interactions:
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,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
"maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
@@ -870,7 +967,7 @@ interactions:
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":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
"gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
@@ -879,7 +976,7 @@ interactions:
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",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
"label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
@@ -888,25 +985,25 @@ interactions:
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",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
"label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "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,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
+ 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
+ 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}], "page": 1, "pages":
- 1, "results": 27}'
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -918,6 +1015,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -927,7 +1026,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 09 Jul 2024 15:39:08 GMT
+ - Thu, 25 Jul 2024 17:44:19 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -944,7 +1043,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -968,143 +1070,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62,
- 139.144.192.60, 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67,
- 139.144.192.69, 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::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"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
+ 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
+ "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"],
- "status": "ok", "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20,
- 172.232.128.22, 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18,
- 172.232.128.21, 172.232.128.27", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -1114,46 +1219,72 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
@@ -1161,7 +1292,7 @@ interactions:
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":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
@@ -1169,7 +1300,7 @@ interactions:
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,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
"maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
"Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
@@ -1178,7 +1309,7 @@ interactions:
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,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
"maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
@@ -1187,7 +1318,7 @@ interactions:
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":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
"gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
@@ -1196,7 +1327,7 @@ interactions:
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",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
"label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
@@ -1205,25 +1336,25 @@ interactions:
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",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
"label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "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,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
+ 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
+ 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}], "page": 1, "pages":
- 1, "results": 27}'
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1235,6 +1366,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -1244,7 +1377,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 09 Jul 2024 15:39:08 GMT
+ - Thu, 25 Jul 2024 17:44:19 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1261,7 +1394,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestDatabase_Engine.yaml b/test/integration/fixtures/TestDatabase_Engine.yaml
index 627f643a3..d747169b0 100644
--- a/test/integration/fixtures/TestDatabase_Engine.yaml
+++ b/test/integration/fixtures/TestDatabase_Engine.yaml
@@ -1,127 +1,127 @@
---
version: 1
interactions:
-- request:
- body: ""
- form: {}
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/databases/engines?page=1
- method: GET
- response:
- body: '{"data": [{"id": "mysql/8.0.30", "engine": "mysql", "version": "8.0.30"},
+ - request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/databases/engines?page=1
+ method: GET
+ response:
+ body: '{"data": [{"id": "mysql/8.0.30", "engine": "mysql", "version": "8.0.30"},
{"id": "postgresql/12.12", "engine": "postgresql", "version": "12.12"}, {"id":
"postgresql/13.8", "engine": "postgresql", "version": "13.8"}, {"id": "postgresql/14.6",
"engine": "postgresql", "version": "14.6"}], "page": 1, "pages": 1, "results":
4}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "323"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Mon, 24 Jun 2024 16:45:40 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - '*'
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/databases/engines/mysql%2F8.0.30
- method: GET
- response:
- body: '{"id": "mysql/8.0.30", "engine": "mysql", "version": "8.0.30"}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "62"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Mon, 24 Jun 2024 16:45:40 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - '*'
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "323"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Mon, 24 Jun 2024 16:45:40 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - '*'
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "400"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+ - request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/databases/engines/mysql%2F8.0.30
+ method: GET
+ response:
+ body: '{"id": "mysql/8.0.30", "engine": "mysql", "version": "8.0.30"}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "62"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Mon, 24 Jun 2024 16:45:40 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - '*'
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "400"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
diff --git a/test/integration/fixtures/TestDatabase_Type.yaml b/test/integration/fixtures/TestDatabase_Type.yaml
index df63ce296..dd692c428 100644
--- a/test/integration/fixtures/TestDatabase_Type.yaml
+++ b/test/integration/fixtures/TestDatabase_Type.yaml
@@ -1,20 +1,20 @@
---
version: 1
interactions:
-- request:
- body: ""
- form: {}
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/databases/types?page=1
- method: GET
- response:
- body: '{"page": 1, "pages": 1, "results": 19, "data": [{"id": "g6-nanode-1", "label":
+ - request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/databases/types?page=1
+ method: GET
+ response:
+ body: '{"page": 1, "pages": 1, "results": 19, "data": [{"id": "g6-nanode-1", "label":
"DBaaS - Nanode 1GB", "engines": {"mysql": [{"quantity": 1, "price": {"hourly":
0.0225, "monthly": 15.0}}, {"quantity": 2, "price": {"hourly": 0.0375, "monthly":
25.0}}, {"quantity": 3, "price": {"hourly": 0.0525, "monthly": 35.0}}], "postgresql":
@@ -142,114 +142,114 @@ interactions:
{"hourly": 12.48, "monthly": 8320.0}}, {"quantity": 2, "price": {"hourly": 24.96,
"monthly": 16640.0}}, {"quantity": 3, "price": {"hourly": 37.44, "monthly":
24960.0}}]}, "memory": 524288, "disk": 7372800, "vcpus": 64, "class": "dedicated"}]}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Mon, 24 Jun 2024 16:45:40 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- - Accept-Encoding
- X-Accepted-Oauth-Scopes:
- - '*'
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/databases/types/g6-nanode-1
- method: GET
- response:
- body: '{"id": "g6-nanode-1", "label": "DBaaS - Nanode 1GB", "engines": {"mysql":
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Mon, 24 Jun 2024 16:45:40 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ - Accept-Encoding
+ X-Accepted-Oauth-Scopes:
+ - '*'
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "400"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+ - request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/databases/types/g6-nanode-1
+ method: GET
+ response:
+ body: '{"id": "g6-nanode-1", "label": "DBaaS - Nanode 1GB", "engines": {"mysql":
[{"quantity": 1, "price": {"hourly": 0.0225, "monthly": 15.0}}, {"quantity":
2, "price": {"hourly": 0.0375, "monthly": 25.0}}, {"quantity": 3, "price": {"hourly":
0.0525, "monthly": 35.0}}], "postgresql": [{"quantity": 1, "price": {"hourly":
0.0225, "monthly": 15.0}}, {"quantity": 2, "price": {"hourly": 0.0375, "monthly":
25.0}}, {"quantity": 3, "price": {"hourly": 0.0525, "monthly": 35.0}}]}, "memory":
1024, "disk": 25600, "vcpus": 1, "class": "nanode"}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "532"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Mon, 24 Jun 2024 16:45:41 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - '*'
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "532"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Mon, 24 Jun 2024 16:45:41 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - '*'
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "400"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
diff --git a/test/integration/fixtures/TestDomainRecord_Create.yaml b/test/integration/fixtures/TestDomainRecord_Create.yaml
index 1d62539e2..7c42607f6 100644
--- a/test/integration/fixtures/TestDomainRecord_Create.yaml
+++ b/test/integration/fixtures/TestDomainRecord_Create.yaml
@@ -14,7 +14,7 @@ interactions:
url: https://api.linode.com/v4beta/domains
method: POST
response:
- body: '{"id": 470363, "type": "master", "domain": "linodego-blue-test.com", "tags":
+ body: '{"id": 3041953, "type": "master", "domain": "linodego-blue-test.com", "tags":
[], "group": "", "status": "active", "errors": "", "description": "", "soa_email":
"example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec":
0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated":
@@ -30,18 +30,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "350"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:22 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
- domains:read_write
@@ -51,7 +58,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -69,10 +79,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470363/records
+ url: https://api.linode.com/v4beta/domains/3041953/records
method: POST
response:
- body: '{"id": 42397, "type": "A", "name": "a", "target": "127.0.0.1", "priority":
+ body: '{"id": 35694150, "type": "A", "name": "a", "target": "127.0.0.1", "priority":
0, "weight": 0, "port": 0, "service": null, "protocol": null, "ttl_sec": 0,
"tag": null, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}'
headers:
@@ -86,16 +96,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
Content-Length:
- - "231"
+ - "234"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:22 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -108,7 +124,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -126,7 +145,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470363/records/42397
+ url: https://api.linode.com/v4beta/domains/3041953/records/35694150
method: DELETE
response:
body: '{}'
@@ -141,16 +160,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:22 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -163,7 +188,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -181,7 +209,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470363
+ url: https://api.linode.com/v4beta/domains/3041953
method: DELETE
response:
body: '{}'
@@ -196,16 +224,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:22 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -218,7 +252,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestDomainRecord_Get.yaml b/test/integration/fixtures/TestDomainRecord_Get.yaml
index 8f9579680..f88f57b22 100644
--- a/test/integration/fixtures/TestDomainRecord_Get.yaml
+++ b/test/integration/fixtures/TestDomainRecord_Get.yaml
@@ -14,7 +14,7 @@ interactions:
url: https://api.linode.com/v4beta/domains
method: POST
response:
- body: '{"id": 470367, "type": "master", "domain": "linodego-blue-test.com", "tags":
+ body: '{"id": 3041957, "type": "master", "domain": "linodego-blue-test.com", "tags":
[], "group": "", "status": "active", "errors": "", "description": "", "soa_email":
"example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec":
0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated":
@@ -30,18 +30,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "350"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:30 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
- domains:read_write
@@ -51,7 +58,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -69,10 +79,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470367/records
+ url: https://api.linode.com/v4beta/domains/3041957/records
method: POST
response:
- body: '{"id": 42401, "type": "A", "name": "a", "target": "127.0.0.1", "priority":
+ body: '{"id": 35694155, "type": "A", "name": "a", "target": "127.0.0.1", "priority":
0, "weight": 0, "port": 0, "service": null, "protocol": null, "ttl_sec": 0,
"tag": null, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}'
headers:
@@ -86,16 +96,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
Content-Length:
- - "231"
+ - "234"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:30 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -108,7 +124,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -126,10 +145,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470367/records/42401
+ url: https://api.linode.com/v4beta/domains/3041957/records/35694155
method: GET
response:
- body: '{"id": 42401, "type": "A", "name": "a", "target": "127.0.0.1", "priority":
+ body: '{"id": 35694155, "type": "A", "name": "a", "target": "127.0.0.1", "priority":
0, "weight": 0, "port": 0, "service": null, "protocol": null, "ttl_sec": 0,
"tag": null, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}'
headers:
@@ -143,17 +162,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=0, s-maxage=0, no-cache, no-store
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
Content-Length:
- - "231"
+ - "234"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:30 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -167,7 +191,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -185,7 +212,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470367/records/42401
+ url: https://api.linode.com/v4beta/domains/3041957/records/35694155
method: DELETE
response:
body: '{}'
@@ -200,16 +227,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:30 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -222,7 +255,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -240,7 +276,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470367
+ url: https://api.linode.com/v4beta/domains/3041957
method: DELETE
response:
body: '{}'
@@ -255,16 +291,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:31 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -277,7 +319,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestDomainRecord_Update.yaml b/test/integration/fixtures/TestDomainRecord_Update.yaml
index 06cf8c31b..720340b69 100644
--- a/test/integration/fixtures/TestDomainRecord_Update.yaml
+++ b/test/integration/fixtures/TestDomainRecord_Update.yaml
@@ -14,7 +14,7 @@ interactions:
url: https://api.linode.com/v4beta/domains
method: POST
response:
- body: '{"id": 470364, "type": "master", "domain": "linodego-blue-test.com", "tags":
+ body: '{"id": 3041954, "type": "master", "domain": "linodego-blue-test.com", "tags":
[], "group": "", "status": "active", "errors": "", "description": "", "soa_email":
"example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec":
0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated":
@@ -30,18 +30,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "350"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:24 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
- domains:read_write
@@ -51,7 +58,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -69,10 +79,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470364/records
+ url: https://api.linode.com/v4beta/domains/3041954/records
method: POST
response:
- body: '{"id": 42398, "type": "A", "name": "a", "target": "127.0.0.1", "priority":
+ body: '{"id": 35694151, "type": "A", "name": "a", "target": "127.0.0.1", "priority":
0, "weight": 0, "port": 0, "service": null, "protocol": null, "ttl_sec": 0,
"tag": null, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}'
headers:
@@ -86,16 +96,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
Content-Length:
- - "231"
+ - "234"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:24 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -108,7 +124,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -126,12 +145,12 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470364/records/42398
+ url: https://api.linode.com/v4beta/domains/3041954/records/35694151
method: PUT
response:
- body: '{"id": 42398, "type": "A", "name": "renamed", "target": "127.0.0.1", "priority":
- 0, "weight": 0, "port": 0, "service": null, "protocol": null, "ttl_sec": 0,
- "tag": null, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}'
+ body: '{"id": 35694151, "type": "A", "name": "renamed", "target": "127.0.0.1",
+ "priority": 0, "weight": 0, "port": 0, "service": null, "protocol": null, "ttl_sec":
+ 0, "tag": null, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -143,16 +162,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
Content-Length:
- - "237"
+ - "240"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:24 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -165,7 +190,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -183,7 +211,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470364/records/42398
+ url: https://api.linode.com/v4beta/domains/3041954/records/35694151
method: DELETE
response:
body: '{}'
@@ -198,16 +226,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:24 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -220,7 +254,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -238,7 +275,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470364
+ url: https://api.linode.com/v4beta/domains/3041954
method: DELETE
response:
body: '{}'
@@ -253,16 +290,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:24 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -275,7 +318,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestDomainRecords_List.yaml b/test/integration/fixtures/TestDomainRecords_List.yaml
index 9e9218394..1a2ca7d59 100644
--- a/test/integration/fixtures/TestDomainRecords_List.yaml
+++ b/test/integration/fixtures/TestDomainRecords_List.yaml
@@ -14,7 +14,7 @@ interactions:
url: https://api.linode.com/v4beta/domains
method: POST
response:
- body: '{"id": 470365, "type": "master", "domain": "linodego-blue-test.com", "tags":
+ body: '{"id": 3041955, "type": "master", "domain": "linodego-blue-test.com", "tags":
[], "group": "", "status": "active", "errors": "", "description": "", "soa_email":
"example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec":
0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated":
@@ -30,18 +30,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "350"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:26 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
- domains:read_write
@@ -51,7 +58,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -69,10 +79,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470365/records
+ url: https://api.linode.com/v4beta/domains/3041955/records
method: POST
response:
- body: '{"id": 42399, "type": "A", "name": "a", "target": "127.0.0.1", "priority":
+ body: '{"id": 35694152, "type": "A", "name": "a", "target": "127.0.0.1", "priority":
0, "weight": 0, "port": 0, "service": null, "protocol": null, "ttl_sec": 0,
"tag": null, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}'
headers:
@@ -86,16 +96,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
Content-Length:
- - "231"
+ - "234"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:26 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -108,7 +124,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -128,10 +147,10 @@ interactions:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- '{"name":"a"}'
- url: https://api.linode.com/v4beta/domains/470365/records?page=1
+ url: https://api.linode.com/v4beta/domains/3041955/records?page=1
method: GET
response:
- body: '{"data": [{"id": 42399, "type": "A", "name": "a", "target": "127.0.0.1",
+ body: '{"data": [{"id": 35694152, "type": "A", "name": "a", "target": "127.0.0.1",
"priority": 0, "weight": 0, "port": 0, "service": null, "protocol": null, "ttl_sec":
0, "tag": null, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}],
"page": 1, "pages": 1, "results": 1}'
@@ -146,19 +165,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=0, s-maxage=0, no-cache, no-store
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "283"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:26 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
@@ -169,7 +194,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -187,7 +215,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470365/records/42399
+ url: https://api.linode.com/v4beta/domains/3041955/records/35694152
method: DELETE
response:
body: '{}'
@@ -202,16 +230,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:26 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -224,7 +258,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -242,7 +279,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470365
+ url: https://api.linode.com/v4beta/domains/3041955
method: DELETE
response:
body: '{}'
@@ -257,16 +294,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:26 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -279,7 +322,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestDomainRecords_ListMultiplePages.yaml b/test/integration/fixtures/TestDomainRecords_ListMultiplePages.yaml
index 3a78a3d93..40a6d09af 100644
--- a/test/integration/fixtures/TestDomainRecords_ListMultiplePages.yaml
+++ b/test/integration/fixtures/TestDomainRecords_ListMultiplePages.yaml
@@ -14,7 +14,7 @@ interactions:
url: https://api.linode.com/v4beta/domains
method: POST
response:
- body: '{"id": 470366, "type": "master", "domain": "linodego-blue-test.com", "tags":
+ body: '{"id": 3041956, "type": "master", "domain": "linodego-blue-test.com", "tags":
[], "group": "", "status": "active", "errors": "", "description": "", "soa_email":
"example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec":
0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated":
@@ -30,18 +30,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "350"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:28 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
- domains:read_write
@@ -51,7 +58,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -69,10 +79,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470366/records
+ url: https://api.linode.com/v4beta/domains/3041956/records
method: POST
response:
- body: '{"id": 42400, "type": "A", "name": "a", "target": "127.0.0.1", "priority":
+ body: '{"id": 35694153, "type": "A", "name": "a", "target": "127.0.0.1", "priority":
0, "weight": 0, "port": 0, "service": null, "protocol": null, "ttl_sec": 0,
"tag": null, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}'
headers:
@@ -86,16 +96,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
Content-Length:
- - "231"
+ - "234"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:28 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -108,7 +124,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -128,10 +147,10 @@ interactions:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- '{"name":"a"}'
- url: https://api.linode.com/v4beta/domains/470366/records?page=1
+ url: https://api.linode.com/v4beta/domains/3041956/records?page=1
method: GET
response:
- body: '{"data": [{"id": 42400, "type": "A", "name": "a", "target": "127.0.0.1",
+ body: '{"data": [{"id": 35694153, "type": "A", "name": "a", "target": "127.0.0.1",
"priority": 0, "weight": 0, "port": 0, "service": null, "protocol": null, "ttl_sec":
0, "tag": null, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05"}],
"page": 1, "pages": 1, "results": 1}'
@@ -146,19 +165,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=0, s-maxage=0, no-cache, no-store
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "283"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:28 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
@@ -169,7 +194,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -187,7 +215,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470366/records/42400
+ url: https://api.linode.com/v4beta/domains/3041956/records/35694153
method: DELETE
response:
body: '{}'
@@ -202,16 +230,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:28 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -224,7 +258,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -242,7 +279,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470366
+ url: https://api.linode.com/v4beta/domains/3041956
method: DELETE
response:
body: '{}'
@@ -257,16 +294,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:28 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -279,7 +322,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestDomain_Create.yaml b/test/integration/fixtures/TestDomain_Create.yaml
index 847fb78dc..cb018c566 100644
--- a/test/integration/fixtures/TestDomain_Create.yaml
+++ b/test/integration/fixtures/TestDomain_Create.yaml
@@ -14,7 +14,7 @@ interactions:
url: https://api.linode.com/v4beta/domains
method: POST
response:
- body: '{"id": 470368, "type": "master", "domain": "linodego-blue-test.com", "tags":
+ body: '{"id": 3041958, "type": "master", "domain": "linodego-blue-test.com", "tags":
[], "group": "", "status": "active", "errors": "", "description": "", "soa_email":
"example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec":
0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated":
@@ -30,18 +30,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "350"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:32 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
- domains:read_write
@@ -51,7 +58,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -69,7 +79,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470368
+ url: https://api.linode.com/v4beta/domains/3041958
method: DELETE
response:
body: '{}'
@@ -84,16 +94,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:32 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -106,7 +122,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestDomain_Get.yaml b/test/integration/fixtures/TestDomain_Get.yaml
index 707812550..94993b211 100644
--- a/test/integration/fixtures/TestDomain_Get.yaml
+++ b/test/integration/fixtures/TestDomain_Get.yaml
@@ -14,7 +14,7 @@ interactions:
url: https://api.linode.com/v4beta/domains
method: POST
response:
- body: '{"id": 470371, "type": "master", "domain": "linodego-blue-test.com", "tags":
+ body: '{"id": 3041961, "type": "master", "domain": "linodego-blue-test.com", "tags":
[], "group": "", "status": "active", "errors": "", "description": "", "soa_email":
"example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec":
0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated":
@@ -30,18 +30,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "350"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:39 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
- domains:read_write
@@ -51,7 +58,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -69,10 +79,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470371
+ url: https://api.linode.com/v4beta/domains/3041961
method: GET
response:
- body: '{"id": 470371, "type": "master", "domain": "linodego-blue-test.com", "tags":
+ body: '{"id": 3041961, "type": "master", "domain": "linodego-blue-test.com", "tags":
[], "group": "", "status": "active", "errors": "", "description": "", "soa_email":
"example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec":
0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated":
@@ -88,19 +98,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=0, s-maxage=0, no-cache, no-store
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "350"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:39 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
@@ -111,7 +127,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -129,7 +148,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470371
+ url: https://api.linode.com/v4beta/domains/3041961
method: DELETE
response:
body: '{}'
@@ -144,16 +163,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:39 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -166,7 +191,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestDomain_Update.yaml b/test/integration/fixtures/TestDomain_Update.yaml
index 27b7e43da..a54ca9352 100644
--- a/test/integration/fixtures/TestDomain_Update.yaml
+++ b/test/integration/fixtures/TestDomain_Update.yaml
@@ -14,7 +14,7 @@ interactions:
url: https://api.linode.com/v4beta/domains
method: POST
response:
- body: '{"id": 470369, "type": "master", "domain": "linodego-blue-test.com", "tags":
+ body: '{"id": 3041959, "type": "master", "domain": "linodego-blue-test.com", "tags":
[], "group": "", "status": "active", "errors": "", "description": "", "soa_email":
"example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec":
0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated":
@@ -30,18 +30,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "350"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:34 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
- domains:read_write
@@ -51,7 +58,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -69,10 +79,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470369
+ url: https://api.linode.com/v4beta/domains/3041959
method: PUT
response:
- body: '{"id": 470369, "type": "master", "domain": "linodego-renamed-domain.com",
+ body: '{"id": 3041959, "type": "master", "domain": "linodego-renamed-domain.com",
"tags": [], "group": "", "status": "active", "errors": "", "description": "",
"soa_email": "example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips":
[], "expire_sec": 0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05",
@@ -88,18 +98,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "355"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:35 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
- domains:read_write
@@ -109,7 +126,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -127,7 +147,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470369
+ url: https://api.linode.com/v4beta/domains/3041959
method: DELETE
response:
body: '{}'
@@ -142,16 +162,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:36 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -164,7 +190,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestDomain_ZoneFile_Get.yaml b/test/integration/fixtures/TestDomain_ZoneFile_Get.yaml
index 4658cf7f3..eff09b7ae 100644
--- a/test/integration/fixtures/TestDomain_ZoneFile_Get.yaml
+++ b/test/integration/fixtures/TestDomain_ZoneFile_Get.yaml
@@ -14,7 +14,7 @@ interactions:
url: https://api.linode.com/v4beta/domains
method: POST
response:
- body: '{"id": 470372, "type": "master", "domain": "linodego-blue-test.com", "tags":
+ body: '{"id": 3041962, "type": "master", "domain": "linodego-blue-test.com", "tags":
[], "group": "", "status": "active", "errors": "", "description": "", "soa_email":
"example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec":
0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated":
@@ -30,18 +30,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "350"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:41 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
- domains:read_write
@@ -51,7 +58,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -69,7 +79,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470372/zone-file
+ url: https://api.linode.com/v4beta/domains/3041962/zone-file
method: GET
response:
body: '{"zone_file": []}'
@@ -84,17 +94,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=0, s-maxage=0, no-cache, no-store
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
Content-Length:
- "17"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:41 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -108,7 +123,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -126,7 +144,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470372
+ url: https://api.linode.com/v4beta/domains/3041962
method: DELETE
response:
body: '{}'
@@ -141,16 +159,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:41 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -163,7 +187,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestDomains_List.yaml b/test/integration/fixtures/TestDomains_List.yaml
index 9d9bd4c7d..c191075e8 100644
--- a/test/integration/fixtures/TestDomains_List.yaml
+++ b/test/integration/fixtures/TestDomains_List.yaml
@@ -14,7 +14,7 @@ interactions:
url: https://api.linode.com/v4beta/domains
method: POST
response:
- body: '{"id": 470370, "type": "master", "domain": "linodego-blue-test.com", "tags":
+ body: '{"id": 3041960, "type": "master", "domain": "linodego-blue-test.com", "tags":
[], "group": "", "status": "active", "errors": "", "description": "", "soa_email":
"example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips": [], "expire_sec":
0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated":
@@ -30,18 +30,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "350"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:37 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
- domains:read_write
@@ -51,7 +58,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -72,11 +82,16 @@ interactions:
url: https://api.linode.com/v4beta/domains?page=1
method: GET
response:
- body: '{"data": [{"id": 470370, "type": "master", "domain": "linodego-blue-test.com",
+ body: '{"data": [{"id": 3041960, "type": "master", "domain": "linodego-blue-test.com",
"tags": [], "group": "", "status": "active", "errors": "", "description": "",
"soa_email": "example@example.com", "retry_sec": 0, "master_ips": [], "axfr_ips":
[], "expire_sec": 0, "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05",
- "updated": "2018-01-02T03:04:05"}], "page": 1, "pages": 1, "results": 1}'
+ "updated": "2018-01-02T03:04:05"}, {"id": 2956594, "type": "master", "domain":
+ "example.clone-1713285844751924000-IntTestSDK.org", "tags": [], "group": "",
+ "status": "active", "errors": "", "description": "", "soa_email": "pathiel-test123@linode.com",
+ "retry_sec": 0, "master_ips": ["127.0.0.1"], "axfr_ips": [], "expire_sec": 0,
+ "refresh_sec": 0, "ttl_sec": 0, "created": "2018-01-02T03:04:05", "updated":
+ "2018-01-02T03:04:05"}], "page": 1, "pages": 1, "results": 2}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -88,19 +103,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=0, s-maxage=0, no-cache, no-store
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "795"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:37 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
@@ -111,7 +132,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -129,7 +153,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/domains/470370
+ url: https://api.linode.com/v4beta/domains/3041960
method: DELETE
response:
body: '{}'
@@ -144,16 +168,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:37 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -166,7 +196,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestFirewallDevice_Delete.yaml b/test/integration/fixtures/TestFirewallDevice_Delete.yaml
index 1a222eb0b..acbb48fcb 100644
--- a/test/integration/fixtures/TestFirewallDevice_Delete.yaml
+++ b/test/integration/fixtures/TestFirewallDevice_Delete.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 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"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
+ 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
+ "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,114 +166,142 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"],
- "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50, 172.236.0.47,
- 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51, 172.236.0.54,
- 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "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,
+ Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
+ 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
+ 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
+ "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
+ 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
+ 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -282,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -291,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 25 Jun 2024 14:30:25 GMT
+ - Thu, 25 Jul 2024 17:44:47 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -308,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -317,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-1vpd65q00t5h","root_pass":"8BBMaHktv+*!6d^D7P1H7q8+|#\\3Mc9wjm7S\u0026Sdsx={3w36RO4C3C3G|*#j4j,~P","image":"linode/debian9","booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-7hmr33m85s5o","root_pass":"SAQv5Q6)\u003e4Zp44Wi?EnpPt8vZ2fM#|9y\u003c$;G@\u0026e{*8Btd5}C3147u}$O0S\\da1Ef","image":"linode/debian9","booted":false}'
form: {}
headers:
Accept:
@@ -329,16 +365,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 60622699, "label": "go-test-ins-1vpd65q00t5h", "group": "", "status":
+ body: '{"id": 61874175, "label": "go-test-ins-7hmr33m85s5o", "group": "", "status":
"provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["45.79.117.65"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "b2853810c42e1d24c19bb72c445d06050f5237d1", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["170.187.237.118"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
+ null, "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled":
+ true, "tags": [], "host_uuid": "64f3e61b2e736f99ca5f41dd36bbc57071b08d42", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -350,18 +386,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "788"
+ - "812"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Tue, 25 Jun 2024 14:30:26 GMT
+ - Thu, 25 Jul 2024 17:44:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -376,7 +414,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -397,7 +438,7 @@ interactions:
url: https://api.linode.com/v4beta/networking/firewalls
method: POST
response:
- body: '{"id": 600032, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05",
+ body: '{"id": 692863, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "status": "enabled", "rules": {"inbound":
[{"action": "ACCEPT", "label": "go-fwrule-test", "ports": "22", "protocol":
"TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["1234::5678/0"]}}], "inbound_policy":
@@ -416,6 +457,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -427,7 +470,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 25 Jun 2024 14:30:26 GMT
+ - Thu, 25 Jul 2024 17:44:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -442,7 +485,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -451,7 +497,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"id":60622699,"type":"linode"}'
+ body: '{"id":61874175,"type":"linode"}'
form: {}
headers:
Accept:
@@ -460,12 +506,12 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/networking/firewalls/600032/devices
+ url: https://api.linode.com/v4beta/networking/firewalls/692863/devices
method: POST
response:
- body: '{"id": 1297446, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "entity": {"id": 60622699, "type": "linode", "label": "go-test-ins-1vpd65q00t5h",
- "url": "/v4/linode/instances/60622699"}}'
+ body: '{"id": 1464174, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "entity": {"id": 61874175, "type": "linode", "label": "go-test-ins-7hmr33m85s5o",
+ "url": "/v4/linode/instances/61874175"}}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -477,6 +523,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -488,7 +536,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 25 Jun 2024 14:30:26 GMT
+ - Thu, 25 Jul 2024 17:44:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -503,7 +551,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -521,7 +572,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/networking/firewalls/600032/devices/1297446
+ url: https://api.linode.com/v4beta/networking/firewalls/692863/devices/1464174
method: DELETE
response:
body: '{}'
@@ -536,6 +587,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -547,7 +600,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 25 Jun 2024 14:30:27 GMT
+ - Thu, 25 Jul 2024 17:44:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -562,7 +615,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -580,7 +636,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/networking/firewalls/600032/devices/1297446
+ url: https://api.linode.com/v4beta/networking/firewalls/692863/devices/1464174
method: GET
response:
body: '{"errors": [{"reason": "Not found"}]}'
@@ -591,6 +647,8 @@ interactions:
- HEAD, GET, OPTIONS, POST, PUT, DELETE
Access-Control-Allow-Origin:
- '*'
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -600,7 +658,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 25 Jun 2024 14:30:27 GMT
+ - Thu, 25 Jul 2024 17:44:48 GMT
Pragma:
- no-cache
Vary:
@@ -610,7 +668,10 @@ interactions:
X-Frame-Options:
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
status: 404 Not Found
@@ -626,7 +687,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/networking/firewalls/600032
+ url: https://api.linode.com/v4beta/networking/firewalls/692863
method: DELETE
response:
body: '{}'
@@ -641,6 +702,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -652,7 +715,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 25 Jun 2024 14:30:27 GMT
+ - Thu, 25 Jul 2024 17:44:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -667,7 +730,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -685,7 +751,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60622699
+ url: https://api.linode.com/v4beta/linode/instances/61874175
method: DELETE
response:
body: '{}'
@@ -700,6 +766,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -711,7 +779,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 25 Jun 2024 14:30:27 GMT
+ - Thu, 25 Jul 2024 17:44:49 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -726,7 +794,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestFirewallDevice_Get.yaml b/test/integration/fixtures/TestFirewallDevice_Get.yaml
index 3194304c7..7868d9a58 100644
--- a/test/integration/fixtures/TestFirewallDevice_Get.yaml
+++ b/test/integration/fixtures/TestFirewallDevice_Get.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 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"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
+ 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
+ "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,114 +166,142 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"],
- "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50, 172.236.0.47,
- 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51, 172.236.0.54,
- 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "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,
+ Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
+ 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
+ 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
+ "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
+ 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
+ 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -282,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -291,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 25 Jun 2024 14:30:23 GMT
+ - Thu, 25 Jul 2024 17:44:45 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -308,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -317,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-12bwme87mh31","root_pass":"/5L5Tr3L{L,0j^v,~2HJv6J5KRHd3sp)8dyHh9]1eFo8A{VnnXZ!6:0]7|m.1*u!","image":"linode/debian9","booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-z2rj698v4z2r","root_pass":"mhUuo(P{43k{e]AIj4h+9jX25k|A\\(NF#0~D9XZ61*B2''Mdei8z-8i7U96M=}[yN","image":"linode/debian9","booted":false}'
form: {}
headers:
Accept:
@@ -329,16 +365,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 60622698, "label": "go-test-ins-12bwme87mh31", "group": "", "status":
+ body: '{"id": 61874173, "label": "go-test-ins-z2rj698v4z2r", "group": "", "status":
"provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["192.46.213.14"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "285e9471b912df74a2b318bab58f5d6a0a1f8da8", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["45.79.120.205"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
+ null, "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled":
+ true, "tags": [], "host_uuid": "c37a9389a8780ce12d745d3f703cbee667a6278e", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -350,18 +386,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "789"
+ - "810"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Tue, 25 Jun 2024 14:30:24 GMT
+ - Thu, 25 Jul 2024 17:44:45 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -376,7 +414,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -397,7 +438,7 @@ interactions:
url: https://api.linode.com/v4beta/networking/firewalls
method: POST
response:
- body: '{"id": 600031, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05",
+ body: '{"id": 692862, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "status": "enabled", "rules": {"inbound":
[{"action": "ACCEPT", "label": "go-fwrule-test", "ports": "22", "protocol":
"TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["1234::5678/0"]}}], "inbound_policy":
@@ -416,6 +457,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -427,7 +470,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 25 Jun 2024 14:30:24 GMT
+ - Thu, 25 Jul 2024 17:44:46 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -442,7 +485,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -451,7 +497,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"id":60622698,"type":"linode"}'
+ body: '{"id":61874173,"type":"linode"}'
form: {}
headers:
Accept:
@@ -460,12 +506,12 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/networking/firewalls/600031/devices
+ url: https://api.linode.com/v4beta/networking/firewalls/692862/devices
method: POST
response:
- body: '{"id": 1297445, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "entity": {"id": 60622698, "type": "linode", "label": "go-test-ins-12bwme87mh31",
- "url": "/v4/linode/instances/60622698"}}'
+ body: '{"id": 1464173, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "entity": {"id": 61874173, "type": "linode", "label": "go-test-ins-z2rj698v4z2r",
+ "url": "/v4/linode/instances/61874173"}}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -477,6 +523,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -488,7 +536,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 25 Jun 2024 14:30:24 GMT
+ - Thu, 25 Jul 2024 17:44:46 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -503,7 +551,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -521,12 +572,12 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/networking/firewalls/600031/devices/1297445
+ url: https://api.linode.com/v4beta/networking/firewalls/692862/devices/1464173
method: GET
response:
- body: '{"id": 1297445, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "entity": {"id": 60622698, "type": "linode", "label": "go-test-ins-12bwme87mh31",
- "url": "/v4/linode/instances/60622698"}}'
+ body: '{"id": 1464173, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "entity": {"id": 61874173, "type": "linode", "label": "go-test-ins-z2rj698v4z2r",
+ "url": "/v4/linode/instances/61874173"}}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -538,6 +589,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -549,7 +602,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 25 Jun 2024 14:30:24 GMT
+ - Thu, 25 Jul 2024 17:44:46 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -565,7 +618,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -583,7 +639,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/networking/firewalls/600031
+ url: https://api.linode.com/v4beta/networking/firewalls/692862
method: DELETE
response:
body: '{}'
@@ -598,6 +654,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -609,7 +667,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 25 Jun 2024 14:30:25 GMT
+ - Thu, 25 Jul 2024 17:44:46 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -624,7 +682,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -642,7 +703,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60622698
+ url: https://api.linode.com/v4beta/linode/instances/61874173
method: DELETE
response:
body: '{}'
@@ -657,6 +718,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -668,7 +731,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 25 Jun 2024 14:30:25 GMT
+ - Thu, 25 Jul 2024 17:44:46 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -683,7 +746,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestFirewallDevices_List.yaml b/test/integration/fixtures/TestFirewallDevices_List.yaml
index aacc106d9..9b1e6c029 100644
--- a/test/integration/fixtures/TestFirewallDevices_List.yaml
+++ b/test/integration/fixtures/TestFirewallDevices_List.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62,
- 139.144.192.60, 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67,
- 139.144.192.69, 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::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"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
+ 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
+ "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,46 +166,72 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
@@ -210,7 +239,7 @@ interactions:
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":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
@@ -218,7 +247,7 @@ interactions:
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,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
"maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
"Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
@@ -227,51 +256,52 @@ interactions:
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,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
"maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "status":
- "ok", "resolvers": {"ipv4": "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -283,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -292,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 09 Jul 2024 14:03:15 GMT
+ - Thu, 25 Jul 2024 17:44:42 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -309,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -318,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-94d04ye91yrv","root_pass":"Rmqf7]uxh]\u003e\u0026i2Gj8b7.1T55]0,h:!TIM6s''1#0YABO6y.j-6BWMM7\u003egmA;]m5G2","image":"linode/debian9","booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-mu576a68cw3h","root_pass":"Q!L7sr#''jRXx8A-6h8$D(KHh7.c`E+7|KA90o|6jRY7Po5u.4c@\u003ePe233rd-6{aH","image":"linode/debian9","booted":false}'
form: {}
headers:
Accept:
@@ -330,16 +365,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 61223345, "label": "go-test-ins-94d04ye91yrv", "group": "", "status":
+ body: '{"id": 61874172, "label": "go-test-ins-mu576a68cw3h", "group": "", "status":
"provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["192.46.208.204"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "99ce0c19fb02826bdc0388b5a88348a96c3ec62e", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["192.46.210.43"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
+ null, "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled":
+ true, "tags": [], "host_uuid": "d946738609b866787b882e81aabef414a072050a", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -351,18 +386,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "790"
+ - "810"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Tue, 09 Jul 2024 14:03:15 GMT
+ - Thu, 25 Jul 2024 17:44:43 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -377,7 +414,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -386,7 +426,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"linodego-fw-test","rules":{"inbound":[{"action":"ACCEPT","label":"go-fwrule-test","ports":"22","protocol":"TCP","addresses":{"ipv4":["0.0.0.0/0"],"ipv6":["1234::5678/0"]}}],"inbound_policy":"ACCEPT","outbound":[{"action":"ACCEPT","label":"go-fwrule-test","ports":"22","protocol":"TCP","addresses":{"ipv4":["0.0.0.0/0"],"ipv6":["1234::5678/0"]}}],"outbound_policy":"ACCEPT"},"tags":["testing"],"devices":{"linodes":[61223345]}}'
+ body: '{"label":"linodego-fw-test","rules":{"inbound":[{"action":"ACCEPT","label":"go-fwrule-test","ports":"22","protocol":"TCP","addresses":{"ipv4":["0.0.0.0/0"],"ipv6":["1234::5678/0"]}}],"inbound_policy":"ACCEPT","outbound":[{"action":"ACCEPT","label":"go-fwrule-test","ports":"22","protocol":"TCP","addresses":{"ipv4":["0.0.0.0/0"],"ipv6":["1234::5678/0"]}}],"outbound_policy":"ACCEPT"},"tags":["testing"],"devices":{"linodes":[61874172]}}'
form: {}
headers:
Accept:
@@ -398,15 +438,15 @@ interactions:
url: https://api.linode.com/v4beta/networking/firewalls
method: POST
response:
- body: '{"id": 643938, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05",
+ body: '{"id": 692861, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "status": "enabled", "rules": {"inbound":
[{"action": "ACCEPT", "label": "go-fwrule-test", "ports": "22", "protocol":
"TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["1234::5678/0"]}}], "inbound_policy":
"ACCEPT", "outbound": [{"action": "ACCEPT", "label": "go-fwrule-test", "ports":
"22", "protocol": "TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["1234::5678/0"]}}],
"outbound_policy": "ACCEPT", "version": 1, "fingerprint": "7bcc0f03"}, "tags":
- ["testing"], "entities": [{"id": 61223345, "type": "linode", "label": "go-test-ins-94d04ye91yrv",
- "url": "/v4/linode/instances/61223345"}]}'
+ ["testing"], "entities": [{"id": 61874172, "type": "linode", "label": "go-test-ins-mu576a68cw3h",
+ "url": "/v4/linode/instances/61874172"}]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -418,6 +458,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -429,7 +471,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 09 Jul 2024 14:03:15 GMT
+ - Thu, 25 Jul 2024 17:44:44 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -444,7 +486,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -462,12 +507,12 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/networking/firewalls/643938/devices?page=1
+ url: https://api.linode.com/v4beta/networking/firewalls/692861/devices?page=1
method: GET
response:
- body: '{"data": [{"id": 1369628, "created": "2018-01-02T03:04:05", "updated":
- "2018-01-02T03:04:05", "entity": {"id": 61223345, "type": "linode", "label":
- "go-test-ins-94d04ye91yrv", "url": "/v4/linode/instances/61223345"}}], "page":
+ body: '{"data": [{"id": 1464172, "created": "2018-01-02T03:04:05", "updated":
+ "2018-01-02T03:04:05", "entity": {"id": 61874172, "type": "linode", "label":
+ "go-test-ins-mu576a68cw3h", "url": "/v4/linode/instances/61874172"}}], "page":
1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -480,6 +525,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -491,7 +538,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 09 Jul 2024 14:03:16 GMT
+ - Thu, 25 Jul 2024 17:44:44 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -507,7 +554,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -525,7 +575,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/networking/firewalls/643938
+ url: https://api.linode.com/v4beta/networking/firewalls/692861
method: DELETE
response:
body: '{}'
@@ -540,6 +590,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -551,7 +603,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 09 Jul 2024 14:03:16 GMT
+ - Thu, 25 Jul 2024 17:44:44 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -566,7 +618,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -584,7 +639,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61223345
+ url: https://api.linode.com/v4beta/linode/instances/61874172
method: DELETE
response:
body: '{}'
@@ -599,6 +654,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -610,7 +667,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 09 Jul 2024 14:03:16 GMT
+ - Thu, 25 Jul 2024 17:44:44 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -625,7 +682,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestFirewallRules_Get.yaml b/test/integration/fixtures/TestFirewallRules_Get.yaml
index f62f61567..acb76213e 100644
--- a/test/integration/fixtures/TestFirewallRules_Get.yaml
+++ b/test/integration/fixtures/TestFirewallRules_Get.yaml
@@ -14,7 +14,7 @@ interactions:
url: https://api.linode.com/v4beta/networking/firewalls
method: POST
response:
- body: '{"id": 34616, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05",
+ body: '{"id": 692859, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "status": "enabled", "rules": {"inbound":
[{"action": "ACCEPT", "label": "go-fwrule-test", "ports": "22", "protocol":
"TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["1234::5678/0"]}}], "inbound_policy":
@@ -33,18 +33,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "583"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:41 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
- firewall:read_write
@@ -54,7 +61,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -72,7 +82,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/networking/firewalls/34616/rules
+ url: https://api.linode.com/v4beta/networking/firewalls/692859/rules
method: GET
response:
body: '{"inbound": [{"action": "ACCEPT", "label": "go-fwrule-test", "ports": "22",
@@ -91,19 +101,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=0, s-maxage=0, no-cache, no-store
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "403"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:42 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
@@ -114,7 +130,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -132,7 +151,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/networking/firewalls/34616
+ url: https://api.linode.com/v4beta/networking/firewalls/692859
method: DELETE
response:
body: '{}'
@@ -147,16 +166,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:42 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -169,7 +194,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestFirewallRules_Update.yaml b/test/integration/fixtures/TestFirewallRules_Update.yaml
index 51863b07c..49fd6b381 100644
--- a/test/integration/fixtures/TestFirewallRules_Update.yaml
+++ b/test/integration/fixtures/TestFirewallRules_Update.yaml
@@ -14,7 +14,7 @@ interactions:
url: https://api.linode.com/v4beta/networking/firewalls
method: POST
response:
- body: '{"id": 34617, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05",
+ body: '{"id": 692860, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "status": "enabled", "rules": {"inbound":
[{"action": "ACCEPT", "label": "go-fwrule-test", "ports": "22", "protocol":
"TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["1234::5678/0"]}}], "inbound_policy":
@@ -33,18 +33,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "583"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:42 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
- firewall:read_write
@@ -54,7 +61,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -72,7 +82,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/networking/firewalls/34617/rules
+ url: https://api.linode.com/v4beta/networking/firewalls/692860/rules
method: PUT
response:
body: '{"inbound": [{"action": "DROP", "label": "go-fwrule-test_r", "ports": "22",
@@ -90,18 +100,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "268"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:42 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
- firewall:read_write
@@ -111,7 +128,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -129,7 +149,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/networking/firewalls/34617/rules
+ url: https://api.linode.com/v4beta/networking/firewalls/692860/rules
method: GET
response:
body: '{"inbound": [{"action": "DROP", "label": "go-fwrule-test_r", "ports": "22",
@@ -147,19 +167,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=0, s-maxage=0, no-cache, no-store
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "268"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:42 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
@@ -170,7 +196,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -188,7 +217,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/networking/firewalls/34617
+ url: https://api.linode.com/v4beta/networking/firewalls/692860
method: DELETE
response:
body: '{}'
@@ -203,16 +232,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:42 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -225,7 +260,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestFirewall_Get.yaml b/test/integration/fixtures/TestFirewall_Get.yaml
index 5f83a8f81..1b0a26c7b 100644
--- a/test/integration/fixtures/TestFirewall_Get.yaml
+++ b/test/integration/fixtures/TestFirewall_Get.yaml
@@ -14,7 +14,7 @@ interactions:
url: https://api.linode.com/v4beta/networking/firewalls
method: POST
response:
- body: '{"id": 34621, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05",
+ body: '{"id": 692865, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "status": "enabled", "rules": {"inbound":
[{"action": "DROP", "label": "linodego-fwrule-test", "protocol": "ICMP", "addresses":
{"ipv4": ["0.0.0.0/0"], "ipv6": ["1234::5678/0"]}}], "inbound_policy": "ACCEPT", "outbound":
@@ -31,18 +31,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "438"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:49 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
- firewall:read_write
@@ -52,7 +59,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -70,10 +80,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/networking/firewalls/34621
+ url: https://api.linode.com/v4beta/networking/firewalls/692865
method: GET
response:
- body: '{"id": 34621, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05",
+ body: '{"id": 692865, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "status": "enabled", "rules": {"inbound":
[{"action": "DROP", "label": "linodego-fwrule-test", "protocol": "ICMP", "addresses":
{"ipv4": ["0.0.0.0/0"], "ipv6": ["1234::5678/0"]}}], "inbound_policy": "ACCEPT", "outbound":
@@ -90,19 +100,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=0, s-maxage=0, no-cache, no-store
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "438"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:50 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
@@ -113,7 +129,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -131,7 +150,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/networking/firewalls/34621
+ url: https://api.linode.com/v4beta/networking/firewalls/692865
method: DELETE
response:
body: '{}'
@@ -146,16 +165,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:50 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -168,7 +193,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestFirewall_Update.yaml b/test/integration/fixtures/TestFirewall_Update.yaml
index 3f1f18263..c851c786e 100644
--- a/test/integration/fixtures/TestFirewall_Update.yaml
+++ b/test/integration/fixtures/TestFirewall_Update.yaml
@@ -14,7 +14,7 @@ interactions:
url: https://api.linode.com/v4beta/networking/firewalls
method: POST
response:
- body: '{"id": 34623, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05",
+ body: '{"id": 692866, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "status": "enabled", "rules": {"inbound":
[{"action": "DROP", "label": "linodego-fwrule-test", "protocol": "ICMP", "addresses":
{"ipv4": ["0.0.0.0/0"]}}], "inbound_policy": "ACCEPT", "outbound": null, "outbound_policy":
@@ -31,18 +31,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "417"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:50 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
- firewall:read_write
@@ -52,7 +59,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -70,10 +80,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/networking/firewalls/34623
+ url: https://api.linode.com/v4beta/networking/firewalls/692866
method: PUT
response:
- body: '{"id": 34623, "label": "linodego-fw-test-updated", "created": "2018-01-02T03:04:05",
+ body: '{"id": 692866, "label": "linodego-fw-test-updated", "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "status": "disabled", "rules": {"inbound":
[{"action": "DROP", "label": "linodego-fwrule-test", "protocol": "ICMP", "addresses":
{"ipv4": ["0.0.0.0/0"]}}], "inbound_policy": "ACCEPT", "outbound": null, "outbound_policy":
@@ -90,18 +100,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "420"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:50 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
- firewall:read_write
@@ -111,7 +128,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -129,7 +149,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/networking/firewalls/34623
+ url: https://api.linode.com/v4beta/networking/firewalls/692866
method: DELETE
response:
body: '{}'
@@ -144,16 +164,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:50 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -166,7 +192,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestFirewalls_List.yaml b/test/integration/fixtures/TestFirewalls_List.yaml
index fb1a263a8..5c5e853db 100644
--- a/test/integration/fixtures/TestFirewalls_List.yaml
+++ b/test/integration/fixtures/TestFirewalls_List.yaml
@@ -14,7 +14,7 @@ interactions:
url: https://api.linode.com/v4beta/networking/firewalls
method: POST
response:
- body: '{"id": 34619, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05",
+ body: '{"id": 692864, "label": "linodego-fw-test", "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "status": "enabled", "rules": {"inbound":
[{"action": "ACCEPT", "label": "go-fwrule-test", "ports": "22", "protocol":
"TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["1234::5678/0"]}}], "inbound_policy":
@@ -33,18 +33,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "583"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:49 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
- firewall:read_write
@@ -54,7 +61,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -75,12 +85,97 @@ interactions:
url: https://api.linode.com/v4beta/networking/firewalls?page=1
method: GET
response:
- body: '{"data": [{"id": 34618, "label": "cloudfw-1719245395965694000", "created":
- "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "status": "enabled",
- "rules": {"inbound": [{"action": "ACCEPT", "label": "ssh-inbound-accept-local",
- "ports": "22", "protocol": "TCP", "addresses": {"ipv4": ["71.232.163.72/32"]}}],
+ body: '{"data": [{"id": 433514, "label": "test-fw", "created": "2018-01-02T03:04:05",
+ "updated": "2018-01-02T03:04:05", "status": "enabled", "rules": {"inbound":
+ [{"action": "ACCEPT", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["1234::5678/0"]},
+ "ports": "22", "protocol": "TCP", "label": "accept-inbound-SSH", "description":
+ null}], "inbound_policy": "DROP", "outbound": [], "outbound_policy": "ACCEPT",
+ "version": 4, "fingerprint": "20eec66f"}, "tags": [], "entities": [{"id": 57328123,
+ "type": "linode", "label": "debian-us-central", "url": "/v4/linode/instances/57328123"},
+ {"id": 54748754, "type": "linode", "label": "debian-us-ord", "url": "/v4/linode/instances/54748754"}]},
+ {"id": 624183, "label": "e2e-firewall-izUKXM", "created": "2018-01-02T03:04:05",
+ "updated": "2018-01-02T03:04:05", "status": "enabled", "rules": {"inbound":
+ [{"label": "ssh-accept-inbound-rule", "addresses": {"ipv4": ["207.172.164.59/32"]},
+ "description": "ACCEPT SSH from test machine", "ports": "22", "protocol": "TCP",
+ "action": "ACCEPT"}], "inbound_policy": "DROP", "outbound": [], "outbound_policy":
+ "ACCEPT", "version": 1, "fingerprint": "45912779"}, "tags": [], "entities":
+ []}, {"id": 624308, "label": "e2e-firewall-svVoqB", "created": "2018-01-02T03:04:05",
+ "updated": "2018-01-02T03:04:05", "status": "enabled", "rules": {"inbound":
+ [{"label": "ssh-accept-inbound-rule", "addresses": {"ipv4": ["207.172.164.59/32"]},
+ "description": "ACCEPT SSH from test machine", "ports": "22", "protocol": "TCP",
+ "action": "ACCEPT"}], "inbound_policy": "DROP", "outbound": [], "outbound_policy":
+ "ACCEPT", "version": 1, "fingerprint": "45912779"}, "tags": [], "entities":
+ [{"id": 60939824, "type": "linode", "label": "ansible-test-471035164-updated",
+ "url": "/v4/linode/instances/60939824"}]}, {"id": 682410, "label": "e2e-firewall-bucVPC",
+ "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "status":
+ "enabled", "rules": {"inbound": [{"label": "ssh-accept-inbound-rule", "addresses":
+ {"ipv4": ["207.172.164.59/32"]}, "description": "ACCEPT SSH from test machine",
+ "ports": "22", "protocol": "TCP", "action": "ACCEPT"}], "inbound_policy": "DROP",
+ "outbound": [], "outbound_policy": "ACCEPT", "version": 1, "fingerprint": "45912779"},
+ "tags": [], "entities": []}, {"id": 682453, "label": "e2e-firewall-WJsukx",
+ "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "status":
+ "enabled", "rules": {"inbound": [{"label": "ssh-accept-inbound-rule", "addresses":
+ {"ipv4": ["207.172.164.59/32"]}, "description": "ACCEPT SSH from test machine",
+ "ports": "22", "protocol": "TCP", "action": "ACCEPT"}], "inbound_policy": "DROP",
+ "outbound": [], "outbound_policy": "ACCEPT", "version": 1, "fingerprint": "45912779"},
+ "tags": [], "entities": []}, {"id": 682477, "label": "e2e-firewall-IzEjvH",
+ "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "status":
+ "enabled", "rules": {"inbound": [{"label": "ssh-accept-inbound-rule", "addresses":
+ {"ipv4": ["207.172.164.59/32"]}, "description": "ACCEPT SSH from test machine",
+ "ports": "22", "protocol": "TCP", "action": "ACCEPT"}], "inbound_policy": "DROP",
+ "outbound": [], "outbound_policy": "ACCEPT", "version": 1, "fingerprint": "45912779"},
+ "tags": [], "entities": []}, {"id": 682500, "label": "e2e-firewall-QdxDkS",
+ "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "status":
+ "enabled", "rules": {"inbound": [{"label": "ssh-accept-inbound-rule", "addresses":
+ {"ipv4": ["207.172.164.59/32"]}, "description": "ACCEPT SSH from test machine",
+ "ports": "22", "protocol": "TCP", "action": "ACCEPT"}], "inbound_policy": "DROP",
+ "outbound": [], "outbound_policy": "ACCEPT", "version": 1, "fingerprint": "45912779"},
+ "tags": [], "entities": []}, {"id": 682505, "label": "e2e-firewall-KkroRq",
+ "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "status":
+ "enabled", "rules": {"inbound": [{"label": "ssh-accept-inbound-rule", "addresses":
+ {"ipv4": ["207.172.164.59/32"]}, "description": "ACCEPT SSH from test machine",
+ "ports": "22", "protocol": "TCP", "action": "ACCEPT"}], "inbound_policy": "DROP",
+ "outbound": [], "outbound_policy": "ACCEPT", "version": 1, "fingerprint": "45912779"},
+ "tags": [], "entities": []}, {"id": 682508, "label": "e2e-firewall-WPxzQk",
+ "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "status":
+ "enabled", "rules": {"inbound": [{"label": "ssh-accept-inbound-rule", "addresses":
+ {"ipv4": ["207.172.164.59/32"]}, "description": "ACCEPT SSH from test machine",
+ "ports": "22", "protocol": "TCP", "action": "ACCEPT"}], "inbound_policy": "DROP",
+ "outbound": [], "outbound_policy": "ACCEPT", "version": 1, "fingerprint": "45912779"},
+ "tags": [], "entities": []}, {"id": 682532, "label": "e2e-firewall-rBZhHt",
+ "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "status":
+ "enabled", "rules": {"inbound": [{"label": "ssh-accept-inbound-rule", "addresses":
+ {"ipv4": ["207.172.164.59/32"]}, "description": "ACCEPT SSH from test machine",
+ "ports": "22", "protocol": "TCP", "action": "ACCEPT"}], "inbound_policy": "DROP",
+ "outbound": [], "outbound_policy": "ACCEPT", "version": 1, "fingerprint": "45912779"},
+ "tags": [], "entities": []}, {"id": 692740, "label": "cloudfw-1721926678901029000",
+ "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "status":
+ "enabled", "rules": {"inbound": [{"action": "ACCEPT", "label": "ssh-inbound-accept-local",
+ "ports": "22", "protocol": "TCP", "addresses": {"ipv4": ["207.172.164.59/32"]}}],
+ "inbound_policy": "DROP", "outbound": [], "outbound_policy": "ACCEPT", "version":
+ 1, "fingerprint": "3e4f4201"}, "tags": [], "entities": []}, {"id": 692760, "label":
+ "cloudfw-1721927227347144000", "created": "2018-01-02T03:04:05", "updated":
+ "2018-01-02T03:04:05", "status": "enabled", "rules": {"inbound": [{"action":
+ "ACCEPT", "label": "ssh-inbound-accept-local", "ports": "22", "protocol": "TCP",
+ "addresses": {"ipv4": ["207.172.164.59/32"]}}], "inbound_policy": "DROP", "outbound":
+ [], "outbound_policy": "ACCEPT", "version": 1, "fingerprint": "3e4f4201"}, "tags":
+ [], "entities": []}, {"id": 692763, "label": "cloudfw-1721927316071520000",
+ "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "status":
+ "enabled", "rules": {"inbound": [{"action": "ACCEPT", "label": "ssh-inbound-accept-local",
+ "ports": "22", "protocol": "TCP", "addresses": {"ipv4": ["207.172.164.59/32"]}}],
"inbound_policy": "DROP", "outbound": [], "outbound_policy": "ACCEPT", "version":
- 1, "fingerprint": "76a7d3b4"}, "tags": [], "entities": []}, {"id": 34619, "label":
+ 1, "fingerprint": "3e4f4201"}, "tags": [], "entities": []}, {"id": 692848, "label":
+ "cloudfw-1721929346146739000", "created": "2018-01-02T03:04:05", "updated":
+ "2018-01-02T03:04:05", "status": "enabled", "rules": {"inbound": [{"action":
+ "ACCEPT", "label": "ssh-inbound-accept-local", "ports": "22", "protocol": "TCP",
+ "addresses": {"ipv4": ["207.172.164.59/32"]}}], "inbound_policy": "DROP", "outbound":
+ [], "outbound_policy": "ACCEPT", "version": 1, "fingerprint": "3e4f4201"}, "tags":
+ [], "entities": []}, {"id": 692854, "label": "cloudfw-1721929441971780000",
+ "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "status":
+ "enabled", "rules": {"inbound": [{"action": "ACCEPT", "label": "ssh-inbound-accept-local",
+ "ports": "22", "protocol": "TCP", "addresses": {"ipv4": ["207.172.164.59/32"]}}],
+ "inbound_policy": "DROP", "outbound": [], "outbound_policy": "ACCEPT", "version":
+ 1, "fingerprint": "3e4f4201"}, "tags": [], "entities": []}, {"id": 692864, "label":
"linodego-fw-test", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
"status": "enabled", "rules": {"inbound": [{"action": "ACCEPT", "label": "go-fwrule-test",
"ports": "22", "protocol": "TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6":
@@ -88,7 +183,7 @@ interactions:
"go-fwrule-test", "ports": "22", "protocol": "TCP", "addresses": {"ipv4": ["0.0.0.0/0"],
"ipv6": ["1234::5678/0"]}}], "outbound_policy": "ACCEPT", "version": 1, "fingerprint":
"7bcc0f03"}, "tags": ["testing"], "entities": []}], "page": 1, "pages": 1, "results":
- 2}'
+ 16}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -100,21 +195,26 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=0, s-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:
+ - Thu, 25 Jul 2024 17:44:49 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
- Authorization, X-Filter
+ - Accept-Encoding
X-Accepted-Oauth-Scopes:
- firewall:read_only
X-Content-Type-Options:
@@ -123,7 +223,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -141,7 +244,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/networking/firewalls/34619
+ url: https://api.linode.com/v4beta/networking/firewalls/692864
method: DELETE
response:
body: '{}'
@@ -156,16 +259,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:49 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -178,7 +287,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestIPAddresses_Instance_Get.yaml b/test/integration/fixtures/TestIPAddresses_Instance_Get.yaml
index 62ceb9a32..5cc498263 100644
--- a/test/integration/fixtures/TestIPAddresses_Instance_Get.yaml
+++ b/test/integration/fixtures/TestIPAddresses_Instance_Get.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 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"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
+ 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
+ "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,114 +166,142 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "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,
+ Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
+ 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
+ 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
+ "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
+ 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
+ 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -282,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -291,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:48 GMT
+ - Thu, 25 Jul 2024 18:31:41 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -308,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -317,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"us-iad","type":"g6-nanode-1","label":"go-test-ins-wo-disk-j10w55l3g4bd","firewall_id":640265,"booted":false}'
+ body: '{"region":"us-iad","type":"g6-nanode-1","label":"go-test-ins-wo-disk-a8h235tq9wp0","firewall_id":693046,"booted":false}'
form: {}
headers:
Accept:
@@ -329,16 +365,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 61169668, "label": "go-test-ins-wo-disk-j10w55l3g4bd", "group":
+ body: '{"id": 61875710, "label": "go-test-ins-wo-disk-a8h235tq9wp0", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["139.144.200.100"], "ipv6": "1234::5678/128",
- "image": null, "region": "us-iad", "specs": {"disk": 25600, "memory": 1024,
- "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "c449e57db5421591d2be28edec5fb22d45255980", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["172.233.202.247"], "ipv6": "1234::5678/128",
+ "image": null, "region": "us-iad", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu":
+ 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io": 10000},
+ "backups": {"enabled": true, "available": false, "schedule": {"day": null, "window":
+ null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true,
+ "tags": [], "host_uuid": "81a6689e2a5932cbf36d6571b2b808a00bb59c64", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -350,18 +386,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "786"
+ - "807"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:48 GMT
+ - Thu, 25 Jul 2024 18:31:41 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -376,7 +414,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -385,7 +426,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-k344ggdc1p92","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-0z29w7ld63ro","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -394,11 +435,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169668/configs
+ url: https://api.linode.com/v4beta/linode/instances/61875710/configs
method: POST
response:
- body: '{"id": 64385520, "label": "go-test-conf-k344ggdc1p92", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ body: '{"id": 65096198, "label": "go-test-conf-0z29w7ld63ro", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
@@ -415,18 +456,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "539"
+ - "540"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:49 GMT
+ - Thu, 25 Jul 2024 18:31:42 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -441,7 +484,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -450,7 +496,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-vpc-1720445509109028000","region":"us-iad","subnets":[{"label":"linodego-vpc-test-1720445509109203000","ipv4":"192.168.0.0/25"}]}'
+ body: '{"label":"go-test-vpc-1721932302138084000","region":"us-iad","subnets":[{"label":"linodego-vpc-test-1721932302138290000","ipv4":"192.168.0.0/25"}]}'
form: {}
headers:
Accept:
@@ -462,8 +508,8 @@ interactions:
url: https://api.linode.com/v4beta/vpcs
method: POST
response:
- body: '{"id": 73331, "label": "go-test-vpc-1720445509109028000", "description":
- "", "region": "us-iad", "subnets": [{"id": 71303, "label": "linodego-vpc-test-1720445509109203000",
+ body: '{"id": 78854, "label": "go-test-vpc-1721932302138084000", "description":
+ "", "region": "us-iad", "subnets": [{"id": 76467, "label": "linodego-vpc-test-1721932302138290000",
"ipv4": "192.168.0.0/25", "ipv6": null, "linodes": [], "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05"}], "created": "2018-01-02T03:04:05", "updated":
"2018-01-02T03:04:05"}'
@@ -478,6 +524,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -489,7 +537,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:49 GMT
+ - Thu, 25 Jul 2024 18:31:42 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -504,7 +552,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -513,7 +564,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-k344ggdc1p92","comments":"","devices":{},"helpers":{"updatedb_disabled":true,"distro":true,"modules_dep":true,"network":true,"devtmpfs_automount":true},"interfaces":[{"purpose":"public"},{"label":"testvlan","purpose":"vlan"},{"purpose":"vpc","subnet_id":71303,"ipv4":{"nat_1_1":"any"}}],"memory_limit":0,"kernel":"linode/latest-64bit","init_rd":null,"root_device":"/dev/sda","run_level":"default","virt_mode":"paravirt"}'
+ body: '{"label":"go-test-conf-0z29w7ld63ro","comments":"","devices":{},"helpers":{"updatedb_disabled":true,"distro":true,"modules_dep":true,"network":false,"devtmpfs_automount":true},"interfaces":[{"purpose":"public"},{"label":"testvlan","purpose":"vlan"},{"purpose":"vpc","subnet_id":76467,"ipv4":{"nat_1_1":"any"}}],"memory_limit":0,"kernel":"linode/latest-64bit","init_rd":null,"root_device":"/dev/sda","run_level":"default","virt_mode":"paravirt"}'
form: {}
headers:
Accept:
@@ -522,23 +573,23 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169668/configs/64385520
+ url: https://api.linode.com/v4beta/linode/instances/61875710/configs/65096198
method: PUT
response:
- body: '{"id": 64385520, "label": "go-test-conf-k344ggdc1p92", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ body: '{"id": 65096198, "label": "go-test-conf-0z29w7ld63ro", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
"sdf": null, "sdg": null, "sdh": null}, "initrd": null, "run_level": "default",
- "virt_mode": "paravirt", "interfaces": [{"id": 1921831, "purpose": "public",
+ "virt_mode": "paravirt", "interfaces": [{"id": 2047975, "purpose": "public",
"primary": false, "active": false, "ipam_address": null, "label": null, "vpc_id":
null, "subnet_id": null, "ipv4": null, "ipv6": null, "ip_ranges": null}, {"id":
- 1921832, "purpose": "vlan", "primary": false, "active": false, "ipam_address":
+ 2047976, "purpose": "vlan", "primary": false, "active": false, "ipam_address":
"", "label": "testvlan", "vpc_id": null, "subnet_id": null, "ipv4": null, "ipv6":
- null, "ip_ranges": null}, {"id": 1921833, "purpose": "vpc", "primary": false,
- "active": false, "ipam_address": null, "label": null, "vpc_id": 73331, "subnet_id":
- 71303, "ipv4": {"vpc": "192.168.0.2", "nat_1_1": "139.144.200.100"}, "ipv6":
+ null, "ip_ranges": null}, {"id": 2047977, "purpose": "vpc", "primary": false,
+ "active": false, "ipam_address": null, "label": null, "vpc_id": 78854, "subnet_id":
+ 76467, "ipv4": {"vpc": "192.168.0.2", "nat_1_1": "172.233.202.247"}, "ipv6":
null, "ip_ranges": []}]}'
headers:
Access-Control-Allow-Credentials:
@@ -551,6 +602,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -560,7 +613,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:49 GMT
+ - Thu, 25 Jul 2024 18:31:42 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -576,7 +629,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -594,23 +650,23 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169668/ips
+ url: https://api.linode.com/v4beta/linode/instances/61875710/ips
method: GET
response:
- body: '{"ipv4": {"public": [{"address": "139.144.200.100", "gateway": "139.144.200.1",
+ body: '{"ipv4": {"public": [{"address": "172.233.202.247", "gateway": "172.233.202.1",
"subnet_mask": "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true,
- "rdns": "139-144-200-100.ip.linodeusercontent.com", "linode_id": 61169668, "region":
- "us-iad", "vpc_nat_1_1": {"vpc_id": 73331, "subnet_id": 71303, "address": "192.168.0.2"}}],
+ "rdns": "172-233-202-247.ip.linodeusercontent.com", "linode_id": 61875710, "region":
+ "us-iad", "vpc_nat_1_1": {"vpc_id": 78854, "subnet_id": 76467, "address": "192.168.0.2"}}],
"private": [], "shared": [], "reserved": [], "vpc": [{"address": "192.168.0.2",
- "address_range": null, "vpc_id": 73331, "subnet_id": 71303, "region": "us-iad",
- "linode_id": 61169668, "config_id": 64385520, "interface_id": 1921833, "active":
- false, "nat_1_1": "139.144.200.100", "gateway": "192.168.0.1", "prefix": 25,
+ "address_range": null, "vpc_id": 78854, "subnet_id": 76467, "region": "us-iad",
+ "linode_id": 61875710, "config_id": 65096198, "interface_id": 2047977, "active":
+ false, "nat_1_1": "172.233.202.247", "gateway": "192.168.0.1", "prefix": 25,
"subnet_mask": "255.255.255.128"}]}, "ipv6": {"slaac": {"address": "1234::5678",
"gateway": "1234::5678", "subnet_mask": "1234::5678", "prefix": 64,
- "type": "ipv6", "rdns": null, "linode_id": 61169668, "region": "us-iad", "public":
+ "type": "ipv6", "rdns": null, "linode_id": 61875710, "region": "us-iad", "public":
true}, "link_local": {"address": "1234::5678", "gateway": "1234::5678",
"subnet_mask": "1234::5678", "prefix": 64, "type": "ipv6", "rdns":
- null, "linode_id": 61169668, "region": "us-iad", "public": false}, "global":
+ null, "linode_id": 61875710, "region": "us-iad", "public": false}, "global":
[]}}'
headers:
Access-Control-Allow-Credentials:
@@ -623,6 +679,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -632,7 +690,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:49 GMT
+ - Thu, 25 Jul 2024 18:31:42 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -649,7 +707,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -667,7 +728,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169668
+ url: https://api.linode.com/v4beta/linode/instances/61875710
method: DELETE
response:
body: '{}'
@@ -682,6 +743,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -693,7 +756,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:50 GMT
+ - Thu, 25 Jul 2024 18:31:43 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -708,7 +771,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -726,7 +792,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/vpcs/73331
+ url: https://api.linode.com/v4beta/vpcs/78854
method: DELETE
response:
body: '{}'
@@ -741,6 +807,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -752,7 +820,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:50 GMT
+ - Thu, 25 Jul 2024 18:31:43 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -767,7 +835,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestIPAddresses_List.yaml b/test/integration/fixtures/TestIPAddresses_List.yaml
index 2f6e26837..b1d022faf 100644
--- a/test/integration/fixtures/TestIPAddresses_List.yaml
+++ b/test/integration/fixtures/TestIPAddresses_List.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 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"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
+ 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
+ "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,114 +166,142 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "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,
+ Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
+ 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
+ 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
+ "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
+ 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
+ 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -282,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -291,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:46 GMT
+ - Thu, 25 Jul 2024 18:32:53 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -308,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -317,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-ki22f0zzd018","firewall_id":640265,"booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-9s5wo423f2cr","firewall_id":693050,"booted":false}'
form: {}
headers:
Accept:
@@ -329,16 +365,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 61169662, "label": "go-test-ins-wo-disk-ki22f0zzd018", "group":
+ body: '{"id": 61875749, "label": "go-test-ins-wo-disk-9s5wo423f2cr", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.55.49"], "ipv6": "1234::5678/128",
- "image": null, "region": "ap-west", "specs": {"disk": 25600, "memory": 1024,
- "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "8bb24924c0b481c3ae3a41bf5819194b366c512d", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["170.187.250.130"], "ipv6": "1234::5678/128",
+ "image": null, "region": "ap-west", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu":
+ 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io": 10000},
+ "backups": {"enabled": true, "available": false, "schedule": {"day": null, "window":
+ null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true,
+ "tags": [], "host_uuid": "0be889ff8efab8e9f1cbbb28b1799aa440e95149", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -350,18 +386,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "785"
+ - "808"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:46 GMT
+ - Thu, 25 Jul 2024 18:32:53 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -376,7 +414,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -385,7 +426,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-56l6ynyci277","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-6vqp59eug488","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -394,11 +435,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169662/configs
+ url: https://api.linode.com/v4beta/linode/instances/61875749/configs
method: POST
response:
- body: '{"id": 64385517, "label": "go-test-conf-56l6ynyci277", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ body: '{"id": 65096250, "label": "go-test-conf-6vqp59eug488", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
@@ -415,18 +456,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "539"
+ - "540"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:47 GMT
+ - Thu, 25 Jul 2024 18:32:54 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -441,7 +484,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -460,22 +506,75 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"linode_id":61169662}'
+ - '{"linode_id":61875749}'
url: https://api.linode.com/v4beta/networking/ips?page=1
method: GET
response:
- body: '{"page": 1, "pages": 1, "results": 4, "data": [{"address": "172.232.29.152",
- "gateway": "172.232.29.1", "subnet_mask": "255.255.255.0", "prefix": 24, "type":
- "ipv4", "public": true, "rdns": "172-232-29-152.ip.linodeusercontent.com", "linode_id":
- 61069178, "region": "us-ord", "vpc_nat_1_1": null}, {"address": "172.105.55.49",
- "gateway": "172.105.55.1", "subnet_mask": "255.255.255.0", "prefix": 24, "type":
- "ipv4", "public": true, "rdns": "172-105-55-49.ip.linodeusercontent.com", "linode_id":
- 61169662, "region": "ap-west", "vpc_nat_1_1": null}, {"address": "1234::5678",
+ body: '{"page": 1, "pages": 1, "results": 23, "data": [{"address": "172.234.197.207",
+ "gateway": "172.234.197.1", "subnet_mask": "255.255.255.0", "prefix": 24, "type":
+ "ipv4", "public": true, "rdns": "172-234-197-207.ip.linodeusercontent.com",
+ "linode_id": 54748754, "region": "us-ord", "vpc_nat_1_1": null}, {"address":
+ "50.116.24.42", "gateway": "50.116.24.1", "subnet_mask": "255.255.255.0", "prefix":
+ 24, "type": "ipv4", "public": true, "rdns": "50-116-24-42.ip.linodeusercontent.com",
+ "linode_id": 57328123, "region": "us-central", "vpc_nat_1_1": null}, {"address":
+ "172.233.221.75", "gateway": "172.233.221.1", "subnet_mask": "255.255.255.0",
+ "prefix": 24, "type": "ipv4", "public": true, "rdns": "172-233-221-75.ip.linodeusercontent.com",
+ "linode_id": 60472044, "region": "us-ord", "vpc_nat_1_1": null}, {"address":
+ "172.233.211.146", "gateway": "172.233.211.1", "subnet_mask": "255.255.255.0",
+ "prefix": 24, "type": "ipv4", "public": true, "rdns": "172-233-211-146.ip.linodeusercontent.com",
+ "linode_id": 60939824, "region": "us-ord", "vpc_nat_1_1": null}, {"address":
+ "66.175.208.38", "gateway": "66.175.208.1", "subnet_mask": "255.255.255.0",
+ "prefix": 24, "type": "ipv4", "public": true, "rdns": "66-175-208-38.ip.linodeusercontent.com",
+ "linode_id": 61839386, "region": "us-east", "vpc_nat_1_1": null}, {"address":
+ "23.239.30.160", "gateway": "23.239.30.1", "subnet_mask": "255.255.255.0", "prefix":
+ 24, "type": "ipv4", "public": true, "rdns": "23-239-30-160.ip.linodeusercontent.com",
+ "linode_id": 61871792, "region": "us-central", "vpc_nat_1_1": null}, {"address":
+ "192.168.227.101", "gateway": null, "subnet_mask": "255.255.128.0", "prefix":
+ 17, "type": "ipv4", "public": false, "rdns": null, "linode_id": 61871792, "region":
+ "us-central", "vpc_nat_1_1": null}, {"address": "23.239.30.211", "gateway":
+ "23.239.30.1", "subnet_mask": "255.255.255.0", "prefix": 24, "type": "ipv4",
+ "public": true, "rdns": "23-239-30-211.ip.linodeusercontent.com", "linode_id":
+ 61871793, "region": "us-central", "vpc_nat_1_1": null}, {"address": "192.168.227.212",
+ "gateway": null, "subnet_mask": "255.255.128.0", "prefix": 17, "type": "ipv4",
+ "public": false, "rdns": null, "linode_id": 61871793, "region": "us-central",
+ "vpc_nat_1_1": null}, {"address": "23.239.30.230", "gateway": "23.239.30.1",
+ "subnet_mask": "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true,
+ "rdns": "23-239-30-230.ip.linodeusercontent.com", "linode_id": 61871794, "region":
+ "us-central", "vpc_nat_1_1": null}, {"address": "192.168.227.219", "gateway":
+ null, "subnet_mask": "255.255.128.0", "prefix": 17, "type": "ipv4", "public":
+ false, "rdns": null, "linode_id": 61871794, "region": "us-central", "vpc_nat_1_1":
+ null}, {"address": "139.144.1.10", "gateway": "139.144.1.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "139-144-1-10.ip.linodeusercontent.com",
+ "linode_id": 61874266, "region": "ap-west", "vpc_nat_1_1": null}, {"address":
+ "170.187.250.130", "gateway": "170.187.250.1", "subnet_mask": "255.255.255.0",
+ "prefix": 24, "type": "ipv4", "public": true, "rdns": "170-187-250-130.ip.linodeusercontent.com",
+ "linode_id": 61875749, "region": "ap-west", "vpc_nat_1_1": null}, {"address":
+ "1234::5678", "gateway": "1234::5678", "subnet_mask": "1234::5678",
+ "prefix": 64, "type": "ipv6", "rdns": null, "linode_id": 54748754, "region":
+ "us-ord", "public": true}, {"address": "1234::5678", "gateway":
+ "1234::5678", "subnet_mask": "1234::5678", "prefix": 64, "type": "ipv6",
+ "rdns": null, "linode_id": 57328123, "region": "us-central", "public": true},
+ {"address": "1234::5678", "gateway": "1234::5678", "subnet_mask":
+ "1234::5678", "prefix": 64, "type": "ipv6", "rdns": null, "linode_id":
+ 60472044, "region": "us-ord", "public": true}, {"address": "1234::5678",
+ "gateway": "1234::5678", "subnet_mask": "1234::5678", "prefix": 64,
+ "type": "ipv6", "rdns": null, "linode_id": 60939824, "region": "us-ord", "public":
+ true}, {"address": "1234::5678", "gateway": "1234::5678", "subnet_mask":
+ "1234::5678", "prefix": 64, "type": "ipv6", "rdns": null, "linode_id":
+ 61839386, "region": "us-east", "public": true}, {"address": "1234::5678",
"gateway": "1234::5678", "subnet_mask": "1234::5678", "prefix": 64,
- "type": "ipv6", "rdns": null, "linode_id": 61069178, "region": "us-ord", "public":
+ "type": "ipv6", "rdns": null, "linode_id": 61871792, "region": "us-central",
+ "public": true}, {"address": "1234::5678", "gateway": "1234::5678",
+ "subnet_mask": "1234::5678", "prefix": 64, "type": "ipv6", "rdns":
+ null, "linode_id": 61871793, "region": "us-central", "public": true}, {"address":
+ "1234::5678", "gateway": "1234::5678", "subnet_mask": "1234::5678",
+ "prefix": 64, "type": "ipv6", "rdns": null, "linode_id": 61871794, "region":
+ "us-central", "public": true}, {"address": "1234::5678",
+ "gateway": "1234::5678", "subnet_mask": "1234::5678", "prefix": 64,
+ "type": "ipv6", "rdns": null, "linode_id": 61874266, "region": "ap-west", "public":
true}, {"address": "1234::5678", "gateway": "1234::5678", "subnet_mask":
"1234::5678", "prefix": 64, "type": "ipv6", "rdns": null, "linode_id":
- 61169662, "region": "ap-west", "public": true}]}'
+ 61875749, "region": "ap-west", "public": true}]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -487,6 +586,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -496,7 +597,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:47 GMT
+ - Thu, 25 Jul 2024 18:32:54 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -513,7 +614,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -534,18 +638,71 @@ interactions:
url: https://api.linode.com/v4beta/networking/ips?page=1&skip_ipv6_rdns=true
method: GET
response:
- body: '{"page": 1, "pages": 1, "results": 4, "data": [{"address": "172.232.29.152",
- "gateway": "172.232.29.1", "subnet_mask": "255.255.255.0", "prefix": 24, "type":
- "ipv4", "public": true, "rdns": "172-232-29-152.ip.linodeusercontent.com", "linode_id":
- 61069178, "region": "us-ord", "vpc_nat_1_1": null}, {"address": "172.105.55.49",
- "gateway": "172.105.55.1", "subnet_mask": "255.255.255.0", "prefix": 24, "type":
- "ipv4", "public": true, "rdns": "172-105-55-49.ip.linodeusercontent.com", "linode_id":
- 61169662, "region": "ap-west", "vpc_nat_1_1": null}, {"address": "1234::5678",
+ body: '{"page": 1, "pages": 1, "results": 23, "data": [{"address": "172.234.197.207",
+ "gateway": "172.234.197.1", "subnet_mask": "255.255.255.0", "prefix": 24, "type":
+ "ipv4", "public": true, "rdns": "172-234-197-207.ip.linodeusercontent.com",
+ "linode_id": 54748754, "region": "us-ord", "vpc_nat_1_1": null}, {"address":
+ "50.116.24.42", "gateway": "50.116.24.1", "subnet_mask": "255.255.255.0", "prefix":
+ 24, "type": "ipv4", "public": true, "rdns": "50-116-24-42.ip.linodeusercontent.com",
+ "linode_id": 57328123, "region": "us-central", "vpc_nat_1_1": null}, {"address":
+ "172.233.221.75", "gateway": "172.233.221.1", "subnet_mask": "255.255.255.0",
+ "prefix": 24, "type": "ipv4", "public": true, "rdns": "172-233-221-75.ip.linodeusercontent.com",
+ "linode_id": 60472044, "region": "us-ord", "vpc_nat_1_1": null}, {"address":
+ "172.233.211.146", "gateway": "172.233.211.1", "subnet_mask": "255.255.255.0",
+ "prefix": 24, "type": "ipv4", "public": true, "rdns": "172-233-211-146.ip.linodeusercontent.com",
+ "linode_id": 60939824, "region": "us-ord", "vpc_nat_1_1": null}, {"address":
+ "66.175.208.38", "gateway": "66.175.208.1", "subnet_mask": "255.255.255.0",
+ "prefix": 24, "type": "ipv4", "public": true, "rdns": "66-175-208-38.ip.linodeusercontent.com",
+ "linode_id": 61839386, "region": "us-east", "vpc_nat_1_1": null}, {"address":
+ "23.239.30.160", "gateway": "23.239.30.1", "subnet_mask": "255.255.255.0", "prefix":
+ 24, "type": "ipv4", "public": true, "rdns": "23-239-30-160.ip.linodeusercontent.com",
+ "linode_id": 61871792, "region": "us-central", "vpc_nat_1_1": null}, {"address":
+ "192.168.227.101", "gateway": null, "subnet_mask": "255.255.128.0", "prefix":
+ 17, "type": "ipv4", "public": false, "rdns": null, "linode_id": 61871792, "region":
+ "us-central", "vpc_nat_1_1": null}, {"address": "23.239.30.211", "gateway":
+ "23.239.30.1", "subnet_mask": "255.255.255.0", "prefix": 24, "type": "ipv4",
+ "public": true, "rdns": "23-239-30-211.ip.linodeusercontent.com", "linode_id":
+ 61871793, "region": "us-central", "vpc_nat_1_1": null}, {"address": "192.168.227.212",
+ "gateway": null, "subnet_mask": "255.255.128.0", "prefix": 17, "type": "ipv4",
+ "public": false, "rdns": null, "linode_id": 61871793, "region": "us-central",
+ "vpc_nat_1_1": null}, {"address": "23.239.30.230", "gateway": "23.239.30.1",
+ "subnet_mask": "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true,
+ "rdns": "23-239-30-230.ip.linodeusercontent.com", "linode_id": 61871794, "region":
+ "us-central", "vpc_nat_1_1": null}, {"address": "192.168.227.219", "gateway":
+ null, "subnet_mask": "255.255.128.0", "prefix": 17, "type": "ipv4", "public":
+ false, "rdns": null, "linode_id": 61871794, "region": "us-central", "vpc_nat_1_1":
+ null}, {"address": "139.144.1.10", "gateway": "139.144.1.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "139-144-1-10.ip.linodeusercontent.com",
+ "linode_id": 61874266, "region": "ap-west", "vpc_nat_1_1": null}, {"address":
+ "170.187.250.130", "gateway": "170.187.250.1", "subnet_mask": "255.255.255.0",
+ "prefix": 24, "type": "ipv4", "public": true, "rdns": "170-187-250-130.ip.linodeusercontent.com",
+ "linode_id": 61875749, "region": "ap-west", "vpc_nat_1_1": null}, {"address":
+ "1234::5678", "gateway": "1234::5678", "subnet_mask": "1234::5678",
+ "prefix": 64, "type": "ipv6", "rdns": null, "linode_id": 54748754, "region":
+ "us-ord", "public": true}, {"address": "1234::5678", "gateway":
+ "1234::5678", "subnet_mask": "1234::5678", "prefix": 64, "type": "ipv6",
+ "rdns": null, "linode_id": 57328123, "region": "us-central", "public": true},
+ {"address": "1234::5678", "gateway": "1234::5678", "subnet_mask":
+ "1234::5678", "prefix": 64, "type": "ipv6", "rdns": null, "linode_id":
+ 60472044, "region": "us-ord", "public": true}, {"address": "1234::5678",
+ "gateway": "1234::5678", "subnet_mask": "1234::5678", "prefix": 64,
+ "type": "ipv6", "rdns": null, "linode_id": 60939824, "region": "us-ord", "public":
+ true}, {"address": "1234::5678", "gateway": "1234::5678", "subnet_mask":
+ "1234::5678", "prefix": 64, "type": "ipv6", "rdns": null, "linode_id":
+ 61839386, "region": "us-east", "public": true}, {"address": "1234::5678",
+ "gateway": "1234::5678", "subnet_mask": "1234::5678", "prefix": 64,
+ "type": "ipv6", "rdns": null, "linode_id": 61871792, "region": "us-central",
+ "public": true}, {"address": "1234::5678", "gateway": "1234::5678",
+ "subnet_mask": "1234::5678", "prefix": 64, "type": "ipv6", "rdns":
+ null, "linode_id": 61871793, "region": "us-central", "public": true}, {"address":
+ "1234::5678", "gateway": "1234::5678", "subnet_mask": "1234::5678",
+ "prefix": 64, "type": "ipv6", "rdns": null, "linode_id": 61871794, "region":
+ "us-central", "public": true}, {"address": "1234::5678",
"gateway": "1234::5678", "subnet_mask": "1234::5678", "prefix": 64,
- "type": "ipv6", "rdns": null, "linode_id": 61069178, "region": "us-ord", "public":
+ "type": "ipv6", "rdns": null, "linode_id": 61874266, "region": "ap-west", "public":
true}, {"address": "1234::5678", "gateway": "1234::5678", "subnet_mask":
"1234::5678", "prefix": 64, "type": "ipv6", "rdns": null, "linode_id":
- 61169662, "region": "ap-west", "public": true}]}'
+ 61875749, "region": "ap-west", "public": true}]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -557,6 +714,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -566,7 +725,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:47 GMT
+ - Thu, 25 Jul 2024 18:32:54 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -583,7 +742,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -601,7 +763,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169662
+ url: https://api.linode.com/v4beta/linode/instances/61875749
method: DELETE
response:
body: '{}'
@@ -616,6 +778,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -627,7 +791,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:47 GMT
+ - Thu, 25 Jul 2024 18:32:54 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -642,7 +806,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestIPv6Range_Instance_List.yaml b/test/integration/fixtures/TestIPv6Range_Instance_List.yaml
index 1c950c934..496a8ed24 100644
--- a/test/integration/fixtures/TestIPv6Range_Instance_List.yaml
+++ b/test/integration/fixtures/TestIPv6Range_Instance_List.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 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"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
+ 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
+ "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,114 +166,142 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "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,
+ Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
+ 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
+ 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
+ "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
+ 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
+ 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -282,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -291,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:33:45 GMT
+ - Thu, 25 Jul 2024 18:40:30 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -308,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -317,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"eu-west","type":"g6-nanode-1","label":"go-ins-test-range6","root_pass":"aFP+rk=1\u003e:\u003cH6-48=W\u003csKy0LlI!j#B8\u003e.31kbFQ?5R5Py4B\\DB]5V6|9imv2mdl9","image":"linode/debian9","firewall_id":640268,"booted":false}'
+ body: '{"region":"eu-west","type":"g6-nanode-1","label":"go-ins-test-range6","root_pass":"1hP\\^0?B;,W1fU\u0026@{0e=Ng6TYa3075TzQo{m01m57S;\u0026:Fs0qkjtt6L=Pz7RQ|H)","image":"linode/debian9","firewall_id":693073,"booted":false}'
form: {}
headers:
Accept:
@@ -329,16 +365,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 61169744, "label": "go-ins-test-range6", "group": "", "status":
+ body: '{"id": 61875951, "label": "go-ins-test-range6", "group": "", "status":
"provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["213.168.249.46"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "eu-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "b4745f785fb5e19531a542f1f9ea06fb6413782c", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["213.219.39.83"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "eu-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
+ null, "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled":
+ true, "tags": [], "host_uuid": "53e4a52a1fc1e459ffa48d6d56b511ff54985871", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -350,18 +386,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "784"
+ - "804"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:33:46 GMT
+ - Thu, 25 Jul 2024 18:40:31 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -376,7 +414,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -385,7 +426,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"linode_id":61169744,"prefix_length":64}'
+ body: '{"linode_id":61875951,"prefix_length":64}'
form: {}
headers:
Accept:
@@ -409,6 +450,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -420,7 +463,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:33:46 GMT
+ - Thu, 25 Jul 2024 18:40:31 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -435,7 +478,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -472,6 +518,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -483,7 +531,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:33:46 GMT
+ - Thu, 25 Jul 2024 18:40:31 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -499,7 +547,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -521,7 +572,7 @@ interactions:
method: GET
response:
body: '{"range": "1234::5678", "prefix": 64, "region": "eu-west", "is_bgp":
- false, "linodes": [61169744]}'
+ false, "linodes": [61875951]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -533,6 +584,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -544,7 +597,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:33:46 GMT
+ - Thu, 25 Jul 2024 18:40:31 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -560,7 +613,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -593,6 +649,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -604,7 +662,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:33:47 GMT
+ - Thu, 25 Jul 2024 18:40:31 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -619,7 +677,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -637,7 +698,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169744
+ url: https://api.linode.com/v4beta/linode/instances/61875951
method: DELETE
response:
body: '{}'
@@ -652,6 +713,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -663,7 +726,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:33:47 GMT
+ - Thu, 25 Jul 2024 18:40:32 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -678,7 +741,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestIPv6Range_Share.yaml b/test/integration/fixtures/TestIPv6Range_Share.yaml
index 7e60bc66d..a4b1581f5 100644
--- a/test/integration/fixtures/TestIPv6Range_Share.yaml
+++ b/test/integration/fixtures/TestIPv6Range_Share.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 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"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
+ 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
+ "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,114 +166,142 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "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,
+ Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
+ 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
+ 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
+ "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
+ 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
+ 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -282,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -291,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:33:47 GMT
+ - Thu, 25 Jul 2024 18:42:34 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -308,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -317,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"eu-west","type":"g6-nanode-1","label":"go-ins-test-range6","root_pass":"9GD3}-Z*vz9ThI3\\:erL3Y^X2.+c414{`8FeUj8tI??E0B1,w7Ybp,P62rzP''jt.","image":"linode/debian9","firewall_id":640268,"booted":false}'
+ body: '{"region":"eu-west","type":"g6-nanode-1","label":"go-ins-test-range6","root_pass":"*0XME]})fz010k3f8R4\u003e7[x3[O2HPxE1s1z5k1/\\j|ts)Yh''i0RB8QQ\\K\u003cDz?o\u003eG","image":"linode/debian9","firewall_id":693087,"booted":false}'
form: {}
headers:
Accept:
@@ -329,16 +365,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 61169746, "label": "go-ins-test-range6", "group": "", "status":
+ body: '{"id": 61876008, "label": "go-ins-test-range6", "group": "", "status":
"provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["80.85.85.44"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "eu-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "b4745f785fb5e19531a542f1f9ea06fb6413782c", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["176.58.103.22"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "eu-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
+ null, "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled":
+ true, "tags": [], "host_uuid": "53e4a52a1fc1e459ffa48d6d56b511ff54985871", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -350,18 +386,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "781"
+ - "804"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:33:48 GMT
+ - Thu, 25 Jul 2024 18:42:35 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -376,7 +414,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -385,7 +426,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"linode_id":61169746,"prefix_length":64}'
+ body: '{"linode_id":61876008,"prefix_length":64}'
form: {}
headers:
Accept:
@@ -409,6 +450,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -420,7 +463,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:33:48 GMT
+ - Thu, 25 Jul 2024 18:42:35 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -435,7 +478,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -444,7 +490,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"eu-west","type":"g6-nanode-1","label":"go-ins-test-share6","root_pass":"C\u0026j0RV#!4M+c?#439FxwYi|~hfRS\u003e8lr^59gqIo8b4BnN0]@?Vdl\u003c4;{V3V3F3D5","image":"linode/debian9","firewall_id":640268,"booted":false}'
+ body: '{"region":"eu-west","type":"g6-nanode-1","label":"go-ins-test-share6","root_pass":"X:0/w?jb66:965W`BKplZ2`TUz1G:de,v=1z)e6*Y0N2L`BRKJ\\056*Z9xsvak)|","image":"linode/debian9","firewall_id":693087,"booted":false}'
form: {}
headers:
Accept:
@@ -456,16 +502,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 61169747, "label": "go-ins-test-share6", "group": "", "status":
+ body: '{"id": 61876009, "label": "go-ins-test-share6", "group": "", "status":
"provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["80.85.85.56"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "eu-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "f66e1e58ff4311b1b181dd4de942aed11c0319b6", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["176.58.103.36"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "eu-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
+ null, "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled":
+ true, "tags": [], "host_uuid": "e39dd600a15116b587da3a3dd6739ee859f04b82", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -477,18 +523,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "781"
+ - "804"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:33:49 GMT
+ - Thu, 25 Jul 2024 18:42:36 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -503,7 +551,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -512,7 +563,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"ips":["1234::5678"],"linode_id":61169746}'
+ body: '{"ips":["1234::5678"],"linode_id":61876008}'
form: {}
headers:
Accept:
@@ -536,6 +587,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -547,7 +600,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:33:49 GMT
+ - Thu, 25 Jul 2024 18:42:36 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -562,7 +615,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -571,7 +627,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"ips":["1234::5678"],"linode_id":61169747}'
+ body: '{"ips":["1234::5678"],"linode_id":61876009}'
form: {}
headers:
Accept:
@@ -595,6 +651,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -606,7 +664,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:33:49 GMT
+ - Thu, 25 Jul 2024 18:42:36 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -621,7 +679,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -639,19 +700,19 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169747/ips
+ url: https://api.linode.com/v4beta/linode/instances/61876009/ips
method: GET
response:
- body: '{"ipv4": {"public": [{"address": "80.85.85.56", "gateway": "80.85.85.1",
+ body: '{"ipv4": {"public": [{"address": "176.58.103.36", "gateway": "176.58.103.1",
"subnet_mask": "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true,
- "rdns": "80-85-85-56.ip.linodeusercontent.com", "linode_id": 61169747, "region":
+ "rdns": "176-58-103-36.ip.linodeusercontent.com", "linode_id": 61876009, "region":
"eu-west", "vpc_nat_1_1": null}], "private": [], "shared": [], "reserved": [],
"vpc": []}, "ipv6": {"slaac": {"address": "1234::5678",
"gateway": "1234::5678", "subnet_mask": "1234::5678", "prefix": 64,
- "type": "ipv6", "rdns": null, "linode_id": 61169747, "region": "eu-west", "public":
+ "type": "ipv6", "rdns": null, "linode_id": 61876009, "region": "eu-west", "public":
true}, "link_local": {"address": "1234::5678", "gateway": "1234::5678",
"subnet_mask": "1234::5678", "prefix": 64, "type": "ipv6", "rdns":
- null, "linode_id": 61169747, "region": "eu-west", "public": false}, "global":
+ null, "linode_id": 61876009, "region": "eu-west", "public": false}, "global":
[{"range": "1234::5678", "prefix": 64, "region": "eu-west", "route_target":
null}]}}'
headers:
@@ -665,6 +726,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -674,7 +737,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:33:49 GMT
+ - Thu, 25 Jul 2024 18:42:36 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -691,7 +754,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -709,7 +775,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169747
+ url: https://api.linode.com/v4beta/linode/instances/61876009
method: DELETE
response:
body: '{}'
@@ -724,6 +790,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -735,7 +803,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:33:50 GMT
+ - Thu, 25 Jul 2024 18:42:37 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -750,7 +818,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -783,6 +854,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -794,7 +867,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:33:50 GMT
+ - Thu, 25 Jul 2024 18:42:37 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -809,7 +882,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -827,7 +903,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169746
+ url: https://api.linode.com/v4beta/linode/instances/61876008
method: DELETE
response:
body: '{}'
@@ -842,6 +918,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -853,7 +931,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:33:50 GMT
+ - Thu, 25 Jul 2024 18:42:37 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -868,7 +946,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestImage_CloudInit.yaml b/test/integration/fixtures/TestImage_CloudInit.yaml
index 4f97f08f3..381d89283 100644
--- a/test/integration/fixtures/TestImage_CloudInit.yaml
+++ b/test/integration/fixtures/TestImage_CloudInit.yaml
@@ -15,243 +15,289 @@ interactions:
method: GET
response:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "GPU Linodes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.34.5, 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5,
+ 172.105.40.5, 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.0.5,
+ 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5,
+ 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "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"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Cloud Firewall",
+ "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 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,
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Cloud Firewall", "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": "us-ord", "label": "Chicago, IL", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
- "Managed Databases", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
- 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
- "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
- "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "fr-par", "label": "Paris, FR", "country":
+ "fr", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Cloud Firewall", "Managed
+ Databases", "Metadata", "Premium Plans", "Placement Group"], "status": "ok",
+ "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
+ "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Cloud Firewall", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19, 172.232.160.21,
+ 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8, 172.232.160.12,
+ 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Cloud Firewall", "Metadata", "Premium Plans",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4, 172.233.0.9,
+ 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10, 172.233.0.6,
+ 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 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,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country": "nl", "capabilities":
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Cloud Firewall", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "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,
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Cloud Firewall", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 172.232.128.26, 172.232.128.20, 172.232.128.22, 172.232.128.25, 172.232.128.19,
+ 172.232.128.23, 172.232.128.18, 172.232.128.21, 172.232.128.27", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Cloud Firewall", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Cloud Firewall", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 172.232.96.26, 172.232.96.19, 172.232.96.20, 172.232.96.25, 172.232.96.21, 172.232.96.18,
+ 172.232.96.22, 172.232.96.23, 172.232.96.24", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
- 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Cloud Firewall", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.64.44,
+ 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46, 172.233.64.41, 172.233.64.39,
+ 172.233.64.42, 172.233.64.45, 172.233.64.38", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "it-mil", "label": "Milan, IT", "country":
+ "it", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Cloud Firewall", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.192.19,
+ 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24, 172.232.192.21,
+ 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-mia", "label": "Miami, FL", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "id-cgk", "label": "Jakarta, ID", "country":
+ "id", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Cloud Firewall", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.224.23,
+ 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21, 172.232.224.24,
+ 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-lax", "label": "Los Angeles, CA", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.128.45,
+ 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34, 172.233.128.36,
+ 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-den-edge-1", "label": "Edge - Denver, CO",
+ "country": "us", "capabilities": ["Linodes", "Cloud Firewall", "Distributed
+ Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53, 173.223.101.53",
+ "ipv6": "1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "distributed"}, {"id": "de-ham-edge-1", "label": "Edge - Hamburg, DE", "country":
+ "de", "capabilities": ["Linodes", "Cloud Firewall", "Distributed Plans"], "status":
+ "ok", "resolvers": {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4":
+ "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1", "label": "Edge - Johannesburg,
+ ZA\t", "country": "za", "capabilities": ["Linodes", "Cloud Firewall", "Distributed
+ Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53, 173.223.101.53",
+ "ipv6": "1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "distributed"}, {"id": "my-kul-edge-1", "label": "Edge - Kuala Lumpur, MY",
+ "country": "my", "capabilities": ["Linodes", "Cloud Firewall", "Distributed
+ Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53, 173.223.101.53",
+ "ipv6": "1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "distributed"}, {"id": "co-bog-edge-1", "label": "Edge - Bogot\u00e1, CO", "country":
+ "co", "capabilities": ["Linodes", "Cloud Firewall", "Distributed Plans"], "status":
+ "ok", "resolvers": {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4":
+ "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1", "label": "Edge - Houston,
+ TX", "country": "us", "capabilities": ["Linodes", "Cloud Firewall", "Distributed
+ Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53, 173.223.101.53",
+ "ipv6": "1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "distributed"}, {"id": "cl-scl-edge-1", "label": "Edge - Santiago, CL", "country":
+ "cl", "capabilities": ["Linodes", "Cloud Firewall", "Distributed Plans"], "status":
+ "ok", "resolvers": {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
- ["Linodes", "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", "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",
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Block
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, 173.255.212.5,
+ 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, 74.207.242.5",
"ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "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":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country": "us", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
- Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
- "Managed Databases", "Metadata"], "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,
+ Linodes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5,
+ 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5,
+ 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 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}'
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east",
+ "label": "Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "178.79.182.5,
+ 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5,
+ 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5, 139.162.13.5,
+ 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5, 103.3.60.18,
+ 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central", "label":
+ "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Cloud Firewall", "Vlans",
+ "Block Storage Migrations", "Managed Databases", "Metadata", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.130.5, 139.162.131.5, 139.162.132.5,
+ 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5, 139.162.137.5, 139.162.138.5,
+ 139.162.139.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-northeast", "label": "Tokyo, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.66.5,
+ 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5, 139.162.71.5, 139.162.72.5,
+ 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}], "page": 1, "pages":
+ 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -263,24 +309,27 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - max-age=0, no-cache, no-store
+ - private, max-age=900
+ - private, max-age=60, s-maxage=60
Connection:
- keep-alive
+ Content-Length:
+ - "24356"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Expires:
- - Thu, 27 Jun 2024 13:45:10 GMT
- Pragma:
- - no-cache
+ Server:
+ - nginx/1.14.2
Strict-Transport-Security:
- max-age=31536000
+ - max-age=31536000
Vary:
- Authorization, X-Filter
- Authorization, X-Filter
- - Accept-Encoding
X-Accepted-Oauth-Scopes:
- '*'
X-Content-Type-Options:
@@ -289,7 +338,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -298,7 +350,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-ha7nci1a7675","root_pass":"8t|gH255^GD4;itI6\u0026(7H4Lx/82Bx1234::5678^Vcmv1~e4$V$2zcOiub:\u003evVVX)UTQ8''","image":"linode/debian9","firewall_id":605289,"booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-837hb70fb4qy","root_pass":"545$7Z)AA9sXKf,sXaf8^*W}jy((rk|96998De3YdYYw~cKZ{9,KB\u003c=84ki`uM7+","image":"linode/debian9","firewall_id":693368,"booted":false}'
form: {}
headers:
Accept:
@@ -310,16 +362,17 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 60716238, "label": "go-test-ins-ha7nci1a7675", "group": "", "status":
+ body: '{"id": 61877581, "label": "go-test-ins-837hb70fb4qy", "group": "", "status":
"provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["45.79.125.26"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "454cc4590caa2a8de6a482c1c9e382273edb1576", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["192.46.208.15"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
+ null, "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled":
+ true, "tags": [], "host_uuid": "0e0c1ef96c34828ce8b53e9e04870191260828c7", "has_user_data":
+ false, "placement_group": null, "disk_encryption": "disabled", "lke_cluster_id":
+ null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -331,22 +384,23 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - max-age=0, no-cache, no-store
+ - private, max-age=60, s-maxage=60
Connection:
- keep-alive
Content-Length:
- - "791"
+ - "841"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Expires:
- - Thu, 27 Jun 2024 13:45:11 GMT
- Pragma:
- - no-cache
+ Server:
+ - nginx/1.14.2
Strict-Transport-Security:
- max-age=31536000
+ - max-age=31536000
Vary:
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
@@ -357,7 +411,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -375,14 +432,15 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60716238/disks?page=1
+ url: https://api.linode.com/v4beta/linode/instances/61877581/disks?page=1
method: GET
response:
- body: '{"data": [{"id": 119405609, "status": "not ready", "label": "Debian 9 Disk",
+ body: '{"data": [{"id": 121429953, "status": "not ready", "label": "Debian 9 Disk",
"created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "filesystem":
- "ext4", "size": 25088}, {"id": 119405610, "status": "not ready", "label": "512
- MB Swap Image", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "filesystem": "swap", "size": 512}], "page": 1, "pages": 1, "results": 2}'
+ "ext4", "size": 25088, "disk_encryption": "disabled"}, {"id": 121429954, "status":
+ "not ready", "label": "512 MB Swap Image", "created": "2018-01-02T03:04:05",
+ "updated": "2018-01-02T03:04:05", "filesystem": "swap", "size": 512, "disk_encryption":
+ "disabled"}], "page": 1, "pages": 1, "results": 2}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -394,22 +452,24 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - max-age=0, no-cache, no-store
+ - private, max-age=0, s-maxage=0, no-cache, no-store
+ - private, max-age=60, s-maxage=60
Connection:
- keep-alive
Content-Length:
- - "395"
+ - "457"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Expires:
- - Thu, 27 Jun 2024 13:45:11 GMT
- Pragma:
- - no-cache
+ Server:
+ - nginx/1.14.2
Strict-Transport-Security:
- max-age=31536000
+ - max-age=31536000
Vary:
- Authorization, X-Filter
- Authorization, X-Filter
@@ -421,7 +481,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -430,7 +493,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"disk_id":119405609,"label":"linodego-test-cloud-init","cloud_init":true}'
+ body: '{"disk_id":121429953,"label":"linodego-test-cloud-init","cloud_init":true,"tags":["test1","test2"]}'
form: {}
headers:
Accept:
@@ -442,11 +505,12 @@ interactions:
url: https://api.linode.com/v4beta/images
method: POST
response:
- body: '{"id": "private/25943433", "label": "linodego-test-cloud-init", "description":
+ body: '{"id": "private/26428978", "label": "linodego-test-cloud-init", "description":
"", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "size":
- 25088, "created_by": "ErikZilber", "type": "manual", "tags": [], "is_public":
- false, "deprecated": false, "vendor": null, "expiry": null, "eol": null, "status":
- "creating", "capabilities": ["cloud-init"]}'
+ 25088, "created_by": "ychen123", "type": "manual", "tags": ["test1", "test2"],
+ "is_public": false, "deprecated": false, "vendor": null, "expiry": null, "eol":
+ null, "status": "creating", "capabilities": ["cloud-init"], "regions": [], "total_size":
+ 25088}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -458,22 +522,23 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - max-age=0, no-cache, no-store
+ - private, max-age=60, s-maxage=60
Connection:
- keep-alive
Content-Length:
- - "363"
+ - "413"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Expires:
- - Thu, 27 Jun 2024 13:45:11 GMT
- Pragma:
- - no-cache
+ Server:
+ - nginx/1.14.2
Strict-Transport-Security:
- max-age=31536000
+ - max-age=31536000
Vary:
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
@@ -484,7 +549,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -502,7 +570,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/images/private%2F25943433
+ url: https://api.linode.com/v4beta/images/private%2F26428978
method: DELETE
response:
body: '{}'
@@ -517,8 +585,10 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - max-age=0, no-cache, no-store
+ - private, max-age=60, s-maxage=60
Connection:
- keep-alive
Content-Length:
@@ -527,12 +597,11 @@ interactions:
- default-src 'none'
Content-Type:
- application/json
- Expires:
- - Thu, 27 Jun 2024 13:45:11 GMT
- Pragma:
- - no-cache
+ Server:
+ - nginx/1.14.2
Strict-Transport-Security:
- max-age=31536000
+ - max-age=31536000
Vary:
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
@@ -543,7 +612,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -561,7 +633,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60716238
+ url: https://api.linode.com/v4beta/linode/instances/61877581
method: DELETE
response:
body: '{}'
@@ -576,8 +648,10 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - max-age=0, no-cache, no-store
+ - private, max-age=60, s-maxage=60
Connection:
- keep-alive
Content-Length:
@@ -586,12 +660,11 @@ interactions:
- default-src 'none'
Content-Type:
- application/json
- Expires:
- - Thu, 27 Jun 2024 13:45:12 GMT
- Pragma:
- - no-cache
+ Server:
+ - nginx/1.14.2
Strict-Transport-Security:
- max-age=31536000
+ - max-age=31536000
Vary:
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
@@ -602,7 +675,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestImage_CreateUpload.yaml b/test/integration/fixtures/TestImage_CreateUpload.yaml
index 2da7ed03e..c20ba056e 100644
--- a/test/integration/fixtures/TestImage_CreateUpload.yaml
+++ b/test/integration/fixtures/TestImage_CreateUpload.yaml
@@ -15,243 +15,289 @@ interactions:
method: GET
response:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "GPU Linodes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.34.5, 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5,
+ 172.105.40.5, 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.0.5,
+ 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5,
+ 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "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"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Cloud Firewall",
+ "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 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,
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Cloud Firewall", "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": "us-ord", "label": "Chicago, IL", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
- "Managed Databases", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
- 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
- "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
- "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "fr-par", "label": "Paris, FR", "country":
+ "fr", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Cloud Firewall", "Managed
+ Databases", "Metadata", "Premium Plans", "Placement Group"], "status": "ok",
+ "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
+ "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Cloud Firewall", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19, 172.232.160.21,
+ 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8, 172.232.160.12,
+ 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Cloud Firewall", "Metadata", "Premium Plans",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4, 172.233.0.9,
+ 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10, 172.233.0.6,
+ 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 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,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country": "nl", "capabilities":
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Cloud Firewall", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "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,
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Cloud Firewall", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 172.232.128.26, 172.232.128.20, 172.232.128.22, 172.232.128.25, 172.232.128.19,
+ 172.232.128.23, 172.232.128.18, 172.232.128.21, 172.232.128.27", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Cloud Firewall", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Cloud Firewall", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 172.232.96.26, 172.232.96.19, 172.232.96.20, 172.232.96.25, 172.232.96.21, 172.232.96.18,
+ 172.232.96.22, 172.232.96.23, 172.232.96.24", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
- 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Cloud Firewall", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.64.44,
+ 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46, 172.233.64.41, 172.233.64.39,
+ 172.233.64.42, 172.233.64.45, 172.233.64.38", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "it-mil", "label": "Milan, IT", "country":
+ "it", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Cloud Firewall", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.192.19,
+ 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24, 172.232.192.21,
+ 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 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,
- 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-mia", "label": "Miami, FL", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "id-cgk", "label": "Jakarta, ID", "country":
+ "id", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Cloud Firewall", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.224.23,
+ 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21, 172.232.224.24,
+ 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-lax", "label": "Los Angeles, CA", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.128.45,
+ 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34, 172.233.128.36,
+ 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-den-edge-1", "label": "Edge - Denver, CO",
+ "country": "us", "capabilities": ["Linodes", "Cloud Firewall", "Distributed
+ Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53, 173.223.101.53",
+ "ipv6": "1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "distributed"}, {"id": "de-ham-edge-1", "label": "Edge - Hamburg, DE", "country":
+ "de", "capabilities": ["Linodes", "Cloud Firewall", "Distributed Plans"], "status":
+ "ok", "resolvers": {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4":
+ "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1", "label": "Edge - Johannesburg,
+ ZA\t", "country": "za", "capabilities": ["Linodes", "Cloud Firewall", "Distributed
+ Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53, 173.223.101.53",
+ "ipv6": "1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "distributed"}, {"id": "my-kul-edge-1", "label": "Edge - Kuala Lumpur, MY",
+ "country": "my", "capabilities": ["Linodes", "Cloud Firewall", "Distributed
+ Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53, 173.223.101.53",
+ "ipv6": "1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "distributed"}, {"id": "co-bog-edge-1", "label": "Edge - Bogot\u00e1, CO", "country":
+ "co", "capabilities": ["Linodes", "Cloud Firewall", "Distributed Plans"], "status":
+ "ok", "resolvers": {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4":
+ "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1", "label": "Edge - Houston,
+ TX", "country": "us", "capabilities": ["Linodes", "Cloud Firewall", "Distributed
+ Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53, 173.223.101.53",
+ "ipv6": "1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "distributed"}, {"id": "cl-scl-edge-1", "label": "Edge - Santiago, CL", "country":
+ "cl", "capabilities": ["Linodes", "Cloud Firewall", "Distributed Plans"], "status":
+ "ok", "resolvers": {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
- ["Linodes", "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", "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",
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Block
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, 173.255.212.5,
+ 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, 74.207.242.5",
"ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "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":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country": "us", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
- Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
- "Managed Databases", "Metadata"], "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,
+ Linodes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5,
+ 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5,
+ 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
- "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5,
- 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6":
- "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}], "page": 1, "pages": 1, "results": 25}'
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east",
+ "label": "Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "178.79.182.5,
+ 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5,
+ 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5, 139.162.13.5,
+ 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5, 103.3.60.18,
+ 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central", "label":
+ "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Cloud Firewall", "Vlans",
+ "Block Storage Migrations", "Managed Databases", "Metadata", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.130.5, 139.162.131.5, 139.162.132.5,
+ 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5, 139.162.137.5, 139.162.138.5,
+ 139.162.139.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-northeast", "label": "Tokyo, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.66.5,
+ 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5, 139.162.71.5, 139.162.72.5,
+ 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}], "page": 1, "pages":
+ 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -263,24 +309,27 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - max-age=0, no-cache, no-store
+ - private, max-age=900
+ - private, max-age=60, s-maxage=60
Connection:
- keep-alive
+ Content-Length:
+ - "24356"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Expires:
- - Fri, 31 May 2024 17:09:38 GMT
- Pragma:
- - no-cache
+ Server:
+ - nginx/1.14.2
Strict-Transport-Security:
- max-age=31536000
+ - max-age=31536000
Vary:
- Authorization, X-Filter
- Authorization, X-Filter
- - Accept-Encoding
X-Accepted-Oauth-Scopes:
- '*'
X-Content-Type-Options:
@@ -302,7 +351,7 @@ interactions:
duration: ""
- request:
body: '{"region":"ap-west","label":"linodego-image-create-upload","description":"An
- image that does stuff.","cloud_init":true}'
+ image that does stuff.","cloud_init":true,"tags":["foo","bar"]}'
form: {}
headers:
Accept:
@@ -314,12 +363,13 @@ interactions:
url: https://api.linode.com/v4beta/images/upload
method: POST
response:
- body: '{"upload_to": "https://ap-south-1.linodeobjects.com:443/linode-production-machine-images-uploads/25476412?Signature=Tjr7JNsHgbSDhMZqmCJ%2F7hoOyt8%3D&Expires=1717261780&AWSAccessKeyID=SANITIZED",
- "image": {"id": "private/25476412", "label": "linodego-image-create-upload",
+ body: '{"upload_to": "https://ap-south-1.linodeobjects.com:443/linode-production-machine-images-uploads/26428985?Signature=YSPz1TGmUEONHST2rp1RHHe4FjM%3D&Expires=1722022632&AWSAccessKeyID=SANITIZED",
+ "image": {"id": "private/26428985", "label": "linodego-image-create-upload",
"description": "An image that does stuff.", "created": "2018-01-02T03:04:05",
- "updated": "2018-01-02T03:04:05", "size": 0, "created_by": "youjungk01", "type":
- "manual", "tags": [], "is_public": false, "deprecated": false, "vendor": null,
- "expiry": null, "eol": null, "status": "pending_upload", "capabilities": ["cloud-init"]}}'
+ "updated": "2018-01-02T03:04:05", "size": 0, "created_by": "ychen123", "type":
+ "manual", "tags": ["bar", "foo"], "is_public": false, "deprecated": false, "vendor":
+ null, "expiry": null, "eol": null, "status": "pending_upload", "capabilities":
+ ["cloud-init"], "regions": [], "total_size": 0}}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -331,22 +381,23 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - max-age=0, no-cache, no-store
+ - private, max-age=60, s-maxage=60
Connection:
- keep-alive
Content-Length:
- - "610"
+ - "650"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Expires:
- - Fri, 31 May 2024 17:09:40 GMT
- Pragma:
- - no-cache
+ Server:
+ - nginx/1.14.2
Strict-Transport-Security:
- max-age=31536000
+ - max-age=31536000
Vary:
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
@@ -378,7 +429,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/images/private%2F25476412
+ url: https://api.linode.com/v4beta/images/private%2F26428985
method: DELETE
response:
body: '{}'
@@ -393,8 +444,10 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - max-age=0, no-cache, no-store
+ - private, max-age=60, s-maxage=60
Connection:
- keep-alive
Content-Length:
@@ -403,12 +456,11 @@ interactions:
- default-src 'none'
Content-Type:
- application/json
- Expires:
- - Fri, 31 May 2024 17:09:40 GMT
- Pragma:
- - no-cache
+ Server:
+ - nginx/1.14.2
Strict-Transport-Security:
- max-age=31536000
+ - max-age=31536000
Vary:
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
diff --git a/test/integration/fixtures/TestImage_GetFound.yaml b/test/integration/fixtures/TestImage_GetFound.yaml
index d72c71073..517d98c1e 100644
--- a/test/integration/fixtures/TestImage_GetFound.yaml
+++ b/test/integration/fixtures/TestImage_GetFound.yaml
@@ -30,6 +30,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -41,7 +43,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 31 May 2024 17:08:36 GMT
+ - Thu, 25 Jul 2024 17:44:50 GMT
Pragma:
- no-cache
Strict-Transport-Security:
diff --git a/test/integration/fixtures/TestImage_GetMissing.yaml b/test/integration/fixtures/TestImage_GetMissing.yaml
index a321bb85f..75c408def 100644
--- a/test/integration/fixtures/TestImage_GetMissing.yaml
+++ b/test/integration/fixtures/TestImage_GetMissing.yaml
@@ -22,6 +22,8 @@ interactions:
- HEAD, GET, OPTIONS, POST, PUT, DELETE
Access-Control-Allow-Origin:
- '*'
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -31,7 +33,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 31 May 2024 17:08:35 GMT
+ - Thu, 25 Jul 2024 17:44:50 GMT
Pragma:
- no-cache
Vary:
diff --git a/test/integration/fixtures/TestImage_Replicate.yaml b/test/integration/fixtures/TestImage_Replicate.yaml
new file mode 100644
index 000000000..19e833a60
--- /dev/null
+++ b/test/integration/fixtures/TestImage_Replicate.yaml
@@ -0,0 +1,619 @@
+---
+version: 1
+interactions:
+- request:
+ body: '{"region":"us-east","label":"linodego-image-replication","description":"An
+ image that does stuff."}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/images/upload
+ method: POST
+ response:
+ body: '{"upload_to": "https://us-east-1.linodeobjects.com:443/linode-production-machine-images-uploads/26428975?Signature=qRpBKGnJQWZYB7YGXwcW%2BAg3EbQ%3D&Expires=1722022419&AWSAccessKeyID=SANITIZED",
+ "image": {"id": "private/26428975", "label": "linodego-image-replication", "description":
+ "An image that does stuff.", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "size": 0, "created_by": "ychen123", "type": "manual", "tags": [], "is_public":
+ false, "deprecated": false, "vendor": null, "expiry": null, "eol": null, "status":
+ "pending_upload", "capabilities": [], "regions": [], "total_size": 0}}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - private, max-age=60, s-maxage=60
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "625"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Server:
+ - nginx/1.14.2
+ Strict-Transport-Security:
+ - max-age=31536000
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - images:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
+ X-Ratelimit-Limit:
+ - "400"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/images/private%2F26428975
+ method: GET
+ response:
+ body: '{"id": "private/26428975", "label": "linodego-image-replication", "description":
+ "An image that does stuff.", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "size": 0, "created_by": "ychen123", "type": "manual", "tags": [], "is_public":
+ false, "deprecated": false, "vendor": null, "expiry": null, "eol": null, "status":
+ "pending_upload", "capabilities": [], "regions": [], "total_size": 0}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - private, max-age=0, s-maxage=0, no-cache, no-store
+ - private, max-age=60, s-maxage=60
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "410"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Server:
+ - nginx/1.14.2
+ Strict-Transport-Security:
+ - max-age=31536000
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - images:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
+ X-Ratelimit-Limit:
+ - "400"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/images/private%2F26428975
+ method: GET
+ response:
+ body: '{"id": "private/26428975", "label": "linodego-image-replication", "description":
+ "An image that does stuff.", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "size": 0, "created_by": "ychen123", "type": "manual", "tags": [], "is_public":
+ false, "deprecated": false, "vendor": null, "expiry": null, "eol": null, "status":
+ "pending_upload", "capabilities": [], "regions": [], "total_size": 0}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - private, max-age=0, s-maxage=0, no-cache, no-store
+ - private, max-age=60, s-maxage=60
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "410"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Server:
+ - nginx/1.14.2
+ Strict-Transport-Security:
+ - max-age=31536000
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - images:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
+ X-Ratelimit-Limit:
+ - "400"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/images/private%2F26428975
+ method: GET
+ response:
+ body: '{"id": "private/26428975", "label": "linodego-image-replication", "description":
+ "An image that does stuff.", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "size": 0, "created_by": "ychen123", "type": "manual", "tags": [], "is_public":
+ false, "deprecated": false, "vendor": null, "expiry": null, "eol": null, "status":
+ "pending_upload", "capabilities": [], "regions": [], "total_size": 0}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - private, max-age=0, s-maxage=0, no-cache, no-store
+ - private, max-age=60, s-maxage=60
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "410"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Server:
+ - nginx/1.14.2
+ Strict-Transport-Security:
+ - max-age=31536000
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - images:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
+ X-Ratelimit-Limit:
+ - "400"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/images/private%2F26428975
+ method: GET
+ response:
+ body: '{"id": "private/26428975", "label": "linodego-image-replication", "description":
+ "An image that does stuff.", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "size": 0, "created_by": "ychen123", "type": "manual", "tags": [], "is_public":
+ false, "deprecated": false, "vendor": null, "expiry": null, "eol": null, "status":
+ "pending_upload", "capabilities": [], "regions": [], "total_size": 0}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - private, max-age=0, s-maxage=0, no-cache, no-store
+ - private, max-age=60, s-maxage=60
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "410"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Server:
+ - nginx/1.14.2
+ Strict-Transport-Security:
+ - max-age=31536000
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - images:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
+ X-Ratelimit-Limit:
+ - "400"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/images/private%2F26428975
+ method: GET
+ response:
+ body: '{"id": "private/26428975", "label": "linodego-image-replication", "description":
+ "An image that does stuff.", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "size": 0, "created_by": "ychen123", "type": "manual", "tags": [], "is_public":
+ false, "deprecated": false, "vendor": null, "expiry": null, "eol": null, "status":
+ "pending_upload", "capabilities": [], "regions": [], "total_size": 0}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - private, max-age=0, s-maxage=0, no-cache, no-store
+ - private, max-age=60, s-maxage=60
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "410"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Server:
+ - nginx/1.14.2
+ Strict-Transport-Security:
+ - max-age=31536000
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - images:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
+ X-Ratelimit-Limit:
+ - "400"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/images/private%2F26428975
+ method: GET
+ response:
+ body: '{"id": "private/26428975", "label": "linodego-image-replication", "description":
+ "An image that does stuff.", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "size": 1, "created_by": "ychen123", "type": "manual", "tags": [], "is_public":
+ false, "deprecated": false, "vendor": null, "expiry": null, "eol": null, "status":
+ "available", "capabilities": [], "regions": [{"region": "us-east", "status":
+ "available"}], "total_size": 1}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - private, max-age=0, s-maxage=0, no-cache, no-store
+ - private, max-age=60, s-maxage=60
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "449"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Server:
+ - nginx/1.14.2
+ Strict-Transport-Security:
+ - max-age=31536000
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - images:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
+ X-Ratelimit-Limit:
+ - "400"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"regions":["us-east","eu-west"]}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/images/private%2F26428975/regions
+ method: POST
+ response:
+ body: '{"id": "private/26428975", "label": "linodego-image-replication", "description":
+ "An image that does stuff.", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "size": 1, "created_by": "ychen123", "type": "manual", "tags": [], "is_public":
+ false, "deprecated": false, "vendor": null, "expiry": null, "eol": null, "status":
+ "available", "capabilities": [], "regions": [{"region": "us-east", "status":
+ "available"}, {"region": "eu-west", "status": "pending replication"}], "total_size":
+ 1}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - private, max-age=60, s-maxage=60
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "505"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Server:
+ - nginx/1.14.2
+ Strict-Transport-Security:
+ - max-age=31536000
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - images:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
+ X-Ratelimit-Limit:
+ - "400"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/images/private%2F26428975
+ method: DELETE
+ response:
+ body: '{}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - private, max-age=60, s-maxage=60
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "2"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Server:
+ - nginx/1.14.2
+ Strict-Transport-Security:
+ - max-age=31536000
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - images:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
+ X-Ratelimit-Limit:
+ - "400"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
diff --git a/test/integration/fixtures/TestImage_Upload.yaml b/test/integration/fixtures/TestImage_Upload.yaml
index d9a065f42..2c3cee73c 100644
--- a/test/integration/fixtures/TestImage_Upload.yaml
+++ b/test/integration/fixtures/TestImage_Upload.yaml
@@ -15,10 +15,10 @@ interactions:
url: https://api.linode.com/v4beta/images/upload
method: POST
response:
- body: '{"upload_to": "https://us-ord-1.linodeobjects.com:443/linode-production-machine-images-uploads/25476392?Signature=ZL7JALnUFwvCWqx7UIVT6HAgMh8%3D&Expires=1717261716&AWSAccessKeyID=SANITIZED",
- "image": {"id": "private/25476392", "label": "linodego-image-test", "description":
+ body: '{"upload_to": "https://us-ord-1.linodeobjects.com:443/linode-production-machine-images-uploads/26427534?Signature=Q%2FZG9cXoT7rO4Naerg53RQc3%2BgA%3D&Expires=1722015891&AWSAccessKeyID=SANITIZED",
+ "image": {"id": "private/26427534", "label": "linodego-image-test", "description":
"An image that does stuff.", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "size": 0, "created_by": "youjungk01", "type": "manual", "tags": [], "is_public":
+ "size": 0, "created_by": "ychen123", "type": "manual", "tags": [], "is_public":
false, "deprecated": false, "vendor": null, "expiry": null, "eol": null, "status":
"pending_upload", "capabilities": []}}'
headers:
@@ -32,18 +32,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "585"
+ - "587"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 31 May 2024 17:08:37 GMT
+ - Thu, 25 Jul 2024 17:44:51 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -79,12 +81,12 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/images/private%2F25476392
+ url: https://api.linode.com/v4beta/images/private%2F26427534
method: GET
response:
- body: '{"id": "private/25476392", "label": "linodego-image-test", "description":
+ body: '{"id": "private/26427534", "label": "linodego-image-test", "description":
"An image that does stuff.", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "size": 0, "created_by": "youjungk01", "type": "manual", "tags": [], "is_public":
+ "size": 0, "created_by": "ychen123", "type": "manual", "tags": [], "is_public":
false, "deprecated": false, "vendor": null, "expiry": null, "eol": null, "status":
"pending_upload", "capabilities": []}'
headers:
@@ -98,85 +100,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "373"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Fri, 31 May 2024 17:08:52 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - images:read_only
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - account:read_write databases:read_write domains:read_write events:read_write
- firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
- longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
- volumes:read_write vpc:read_write
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/images/private%2F25476392
- method: GET
- response:
- body: '{"id": "private/25476392", "label": "linodego-image-test", "description":
- "An image that does stuff.", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "size": 0, "created_by": "youjungk01", "type": "manual", "tags": [], "is_public":
- false, "deprecated": false, "vendor": null, "expiry": null, "eol": null, "status":
- "pending_upload", "capabilities": []}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
+ Akamai-Internal-Account:
- '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "373"
+ - "371"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 31 May 2024 17:09:08 GMT
+ - Thu, 25 Jul 2024 17:45:07 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -213,12 +150,12 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/images/private%2F25476392
+ url: https://api.linode.com/v4beta/images/private%2F26427534
method: GET
response:
- body: '{"id": "private/25476392", "label": "linodego-image-test", "description":
+ body: '{"id": "private/26427534", "label": "linodego-image-test", "description":
"An image that does stuff.", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "size": 0, "created_by": "youjungk01", "type": "manual", "tags": [], "is_public":
+ "size": 0, "created_by": "ychen123", "type": "manual", "tags": [], "is_public":
false, "deprecated": false, "vendor": null, "expiry": null, "eol": null, "status":
"pending_upload", "capabilities": []}'
headers:
@@ -232,18 +169,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "373"
+ - "371"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 31 May 2024 17:09:23 GMT
+ - Thu, 25 Jul 2024 17:45:22 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -280,12 +219,12 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/images/private%2F25476392
+ url: https://api.linode.com/v4beta/images/private%2F26427534
method: GET
response:
- body: '{"id": "private/25476392", "label": "linodego-image-test", "description":
+ body: '{"id": "private/26427534", "label": "linodego-image-test", "description":
"An image that does stuff.", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "size": 1, "created_by": "youjungk01", "type": "manual", "tags": [], "is_public":
+ "size": 1, "created_by": "ychen123", "type": "manual", "tags": [], "is_public":
false, "deprecated": false, "vendor": null, "expiry": null, "eol": null, "status":
"available", "capabilities": []}'
headers:
@@ -299,18 +238,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "368"
+ - "366"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 31 May 2024 17:09:38 GMT
+ - Thu, 25 Jul 2024 17:45:37 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -347,7 +288,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/images/private%2F25476392
+ url: https://api.linode.com/v4beta/images/private%2F26427534
method: DELETE
response:
body: '{}'
@@ -362,6 +303,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -373,7 +316,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 31 May 2024 17:09:38 GMT
+ - Thu, 25 Jul 2024 17:45:37 GMT
Pragma:
- no-cache
Strict-Transport-Security:
diff --git a/test/integration/fixtures/TestImages_List.yaml b/test/integration/fixtures/TestImages_List.yaml
index 617fca5b5..14f6769f8 100644
--- a/test/integration/fixtures/TestImages_List.yaml
+++ b/test/integration/fixtures/TestImages_List.yaml
@@ -14,29 +14,38 @@ interactions:
url: https://api.linode.com/v4beta/images?page=1
method: GET
response:
- body: '{"data": [{"id": "linode/almalinux8", "label": "AlmaLinux 8", "deprecated":
- false, "size": 2700, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ body: '{"pages": 1, "data": [{"id": "private/26425827", "label": "test_1721924280886354",
+ "description": "Test description", "created": "2018-01-02T03:04:05", "updated":
+ "2018-01-02T03:04:05", "size": 1293, "created_by": "ychen123", "type": "manual",
+ "tags": ["test"], "is_public": false, "deprecated": false, "vendor": null, "expiry":
+ null, "eol": null, "status": "available", "capabilities": []}, {"id": "private/26426164",
+ "label": "test_1721925185088324", "description": "Test description", "created":
+ "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "size": 1292, "created_by":
+ "ychen123", "type": "manual", "tags": ["test"], "is_public": false, "deprecated":
+ false, "vendor": null, "expiry": null, "eol": null, "status": "available", "capabilities":
+ []}, {"id": "linode/almalinux8", "label": "AlmaLinux 8", "deprecated": false,
+ "size": 2700, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
"description": "", "created_by": "linode", "type": "manual", "tags": [], "is_public":
true, "vendor": "AlmaLinux", "expiry": null, "eol": "2018-01-02T03:04:05", "status":
"available", "capabilities": []}, {"id": "linode/almalinux9", "label": "AlmaLinux
9", "deprecated": false, "size": 1700, "created": "2018-01-02T03:04:05", "updated":
"2018-01-02T03:04:05", "description": "", "created_by": "linode", "type": "manual",
"tags": [], "is_public": true, "vendor": "AlmaLinux", "expiry": null, "eol":
- "2018-01-02T03:04:05", "status": "available", "capabilities": []}, {"id": "linode/alpine3.16",
- "label": "Alpine 3.16", "deprecated": false, "size": 400, "created": "2018-01-02T03:04:05",
+ "2018-01-02T03:04:05", "status": "available", "capabilities": []}, {"id": "linode/alpine3.17",
+ "label": "Alpine 3.17", "deprecated": false, "size": 400, "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "description": "", "created_by": "linode",
"type": "manual", "tags": [], "is_public": true, "vendor": "Alpine", "expiry":
null, "eol": "2018-01-02T03:04:05", "status": "available", "capabilities": []},
- {"id": "linode/alpine3.17", "label": "Alpine 3.17", "deprecated": false, "size":
+ {"id": "linode/alpine3.18", "label": "Alpine 3.18", "deprecated": false, "size":
400, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "description":
"", "created_by": "linode", "type": "manual", "tags": [], "is_public": true,
"vendor": "Alpine", "expiry": null, "eol": "2018-01-02T03:04:05", "status":
- "available", "capabilities": []}, {"id": "linode/alpine3.18", "label": "Alpine
- 3.18", "deprecated": false, "size": 400, "created": "2018-01-02T03:04:05", "updated":
+ "available", "capabilities": []}, {"id": "linode/alpine3.19", "label": "Alpine
+ 3.19", "deprecated": false, "size": 400, "created": "2018-01-02T03:04:05", "updated":
"2018-01-02T03:04:05", "description": "", "created_by": "linode", "type": "manual",
"tags": [], "is_public": true, "vendor": "Alpine", "expiry": null, "eol": "2018-01-02T03:04:05",
- "status": "available", "capabilities": []}, {"id": "linode/alpine3.19", "label":
- "Alpine 3.19", "deprecated": false, "size": 400, "created": "2018-01-02T03:04:05",
+ "status": "available", "capabilities": []}, {"id": "linode/alpine3.20", "label":
+ "Alpine 3.20", "deprecated": false, "size": 400, "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "description": "", "created_by": "linode",
"type": "manual", "tags": [], "is_public": true, "vendor": "Alpine", "expiry":
null, "eol": "2018-01-02T03:04:05", "status": "available", "capabilities": []},
@@ -44,79 +53,51 @@ interactions:
"created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "description":
"", "created_by": "linode", "type": "manual", "tags": [], "is_public": true,
"vendor": "Arch", "expiry": null, "eol": null, "status": "available", "capabilities":
- []}, {"id": "linode/centos7", "label": "CentOS 7", "deprecated": false, "size":
- 2800, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "description":
- "", "created_by": "linode", "type": "manual", "tags": [], "is_public": true,
- "vendor": "CentOS", "expiry": null, "eol": "2018-01-02T03:04:05", "status":
- "available", "capabilities": []}, {"id": "linode/centos-stream8", "label": "CentOS
- Stream 8", "deprecated": false, "size": 2600, "created": "2018-01-02T03:04:05",
- "updated": "2018-01-02T03:04:05", "description": "", "created_by": "linode",
- "type": "manual", "tags": [], "is_public": true, "vendor": "CentOS", "expiry":
- null, "eol": "2018-01-02T03:04:05", "status": "available", "capabilities": []},
- {"id": "linode/centos-stream9", "label": "CentOS Stream 9", "deprecated": false,
- "size": 1200, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ []}, {"id": "linode/centos-stream9", "label": "CentOS Stream 9", "deprecated":
+ false, "size": 1200, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
"description": "", "created_by": "linode", "type": "manual", "tags": [], "is_public":
true, "vendor": "CentOS", "expiry": null, "eol": "2018-01-02T03:04:05", "status":
- "available", "capabilities": []}, {"id": "linode/debian10", "label": "Debian
- 10", "deprecated": false, "size": 1500, "created": "2018-01-02T03:04:05", "updated":
+ "available", "capabilities": []}, {"id": "linode/debian11", "label": "Debian
+ 11", "deprecated": false, "size": 1500, "created": "2018-01-02T03:04:05", "updated":
"2018-01-02T03:04:05", "description": "", "created_by": "linode", "type": "manual",
"tags": [], "is_public": true, "vendor": "Debian", "expiry": null, "eol": "2018-01-02T03:04:05",
- "status": "available", "capabilities": []}, {"id": "linode/debian11", "label":
- "Debian 11", "deprecated": false, "size": 1500, "created": "2018-01-02T03:04:05",
+ "status": "available", "capabilities": ["cloud-init"]}, {"id": "linode/debian12",
+ "label": "Debian 12", "deprecated": false, "size": 1500, "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "description": "", "created_by": "linode",
"type": "manual", "tags": [], "is_public": true, "vendor": "Debian", "expiry":
- null, "eol": "2018-01-02T03:04:05", "status": "available", "capabilities": ["cloud-init"]},
- {"id": "linode/debian12", "label": "Debian 12", "deprecated": false, "size":
- 1500, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "description":
- "", "created_by": "linode", "type": "manual", "tags": [], "is_public": true,
- "vendor": "Debian", "expiry": null, "eol": "2018-01-02T03:04:05", "status":
- "available", "capabilities": []}, {"id": "linode/fedora38", "label": "Fedora
- 38", "deprecated": false, "size": 1600, "created": "2018-01-02T03:04:05", "updated":
- "2018-01-02T03:04:05", "description": "", "created_by": "linode", "type": "manual",
- "tags": [], "is_public": true, "vendor": "Fedora", "expiry": null, "eol": "2018-01-02T03:04:05",
- "status": "available", "capabilities": []}, {"id": "linode/fedora39", "label":
- "Fedora 39", "deprecated": false, "size": 1800, "created": "2018-01-02T03:04:05",
- "updated": "2018-01-02T03:04:05", "description": "", "created_by": "linode",
- "type": "manual", "tags": [], "is_public": true, "vendor": "Fedora", "expiry":
null, "eol": "2018-01-02T03:04:05", "status": "available", "capabilities": []},
- {"id": "linode/fedora40", "label": "Fedora 40", "deprecated": false, "size":
- 2000, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "description":
+ {"id": "linode/fedora39", "label": "Fedora 39", "deprecated": false, "size":
+ 1800, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "description":
"", "created_by": "linode", "type": "manual", "tags": [], "is_public": true,
"vendor": "Fedora", "expiry": null, "eol": "2018-01-02T03:04:05", "status":
- "available", "capabilities": ["cloud-init"]}, {"id": "linode/gentoo", "label":
- "Gentoo", "deprecated": false, "size": 6500, "created": "2018-01-02T03:04:05",
+ "available", "capabilities": []}, {"id": "linode/fedora40", "label": "Fedora
+ 40", "deprecated": false, "size": 2000, "created": "2018-01-02T03:04:05", "updated":
+ "2018-01-02T03:04:05", "description": "", "created_by": "linode", "type": "manual",
+ "tags": [], "is_public": true, "vendor": "Fedora", "expiry": null, "eol": "2018-01-02T03:04:05",
+ "status": "available", "capabilities": ["cloud-init"]}, {"id": "linode/gentoo",
+ "label": "Gentoo", "deprecated": false, "size": 6500, "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "description": "", "created_by": "linode",
"type": "manual", "tags": [], "is_public": true, "vendor": "Gentoo", "expiry":
null, "eol": null, "status": "available", "capabilities": []}, {"id": "linode/kali",
"label": "Kali Linux", "deprecated": false, "size": 1536, "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "description": "", "created_by": "linode",
"type": "manual", "tags": [], "is_public": true, "vendor": "Kali", "expiry":
- null, "eol": null, "status": "available", "capabilities": []}, {"id": "linode/debian11-kube-v1.27.9",
- "label": "Kubernetes 1.27.9 on Debian 11", "deprecated": false, "size": 3500,
- "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "description":
- "", "created_by": "linode", "type": "manual", "tags": [], "is_public": true,
- "vendor": "Debian", "expiry": null, "eol": "2018-01-02T03:04:05", "status":
- "available", "capabilities": ["cloud-init"]}, {"id": "linode/debian12-kube-v1.27.9",
+ null, "eol": null, "status": "available", "capabilities": []}, {"id": "linode/debian12-kube-v1.27.9",
"label": "Kubernetes 1.27.9 on Debian 12", "deprecated": false, "size": 3500,
"created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "description":
"", "created_by": "linode", "type": "manual", "tags": [], "is_public": true,
"vendor": "Debian", "expiry": null, "eol": "2018-01-02T03:04:05", "status":
- "available", "capabilities": []}, {"id": "linode/debian11-kube-v1.28.3", "label":
- "Kubernetes 1.28.3 on Debian 11", "deprecated": false, "size": 3500, "created":
- "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "description": "",
- "created_by": "linode", "type": "manual", "tags": [], "is_public": true, "vendor":
- "Debian", "expiry": null, "eol": "2018-01-02T03:04:05", "status": "available",
- "capabilities": ["cloud-init"]}, {"id": "linode/debian12-kube-v1.28.3", "label":
+ "available", "capabilities": []}, {"id": "linode/debian12-kube-v1.28.3", "label":
"Kubernetes 1.28.3 on Debian 12", "deprecated": false, "size": 3500, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "description": "",
"created_by": "linode", "type": "manual", "tags": [], "is_public": true, "vendor":
"Debian", "expiry": null, "eol": "2018-01-02T03:04:05", "status": "available",
- "capabilities": []}, {"id": "linode/debian11-kube-v1.29.2", "label": "Kubernetes
- 1.29.2 on Debian 11", "deprecated": false, "size": 3500, "created": "2018-01-02T03:04:05",
+ "capabilities": []}, {"id": "linode/debian12-kube-v1.29.2", "label": "Kubernetes
+ 1.29.2 on Debian 12", "deprecated": false, "size": 3500, "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "description": "", "created_by": "linode",
"type": "manual", "tags": [], "is_public": true, "vendor": "Debian", "expiry":
- null, "eol": "2018-01-02T03:04:05", "status": "available", "capabilities": ["cloud-init"]},
- {"id": "linode/debian12-kube-v1.29.2", "label": "Kubernetes 1.29.2 on Debian
+ null, "eol": "2018-01-02T03:04:05", "status": "available", "capabilities": []},
+ {"id": "linode/debian12-kube-v1.30.1", "label": "Kubernetes 1.30.1 on Debian
12", "deprecated": false, "size": 3500, "created": "2018-01-02T03:04:05", "updated":
"2018-01-02T03:04:05", "description": "", "created_by": "linode", "type": "manual",
"tags": [], "is_public": true, "vendor": "Debian", "expiry": null, "eol": "2018-01-02T03:04:05",
@@ -125,32 +106,32 @@ interactions:
"updated": "2018-01-02T03:04:05", "description": "", "created_by": "linode",
"type": "manual", "tags": [], "is_public": true, "vendor": "openSUSE", "expiry":
null, "eol": "2018-01-02T03:04:05", "status": "available", "capabilities": []},
- {"id": "linode/rocky8", "label": "Rocky Linux 8", "deprecated": false, "size":
- 2300, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "description":
- "", "created_by": "linode", "type": "manual", "tags": [], "is_public": true,
- "vendor": "Rocky", "expiry": null, "eol": "2018-01-02T03:04:05", "status": "available",
- "capabilities": []}, {"id": "linode/rocky9", "label": "Rocky Linux 9", "deprecated":
- false, "size": 2300, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ {"id": "linode/opensuse15.6", "label": "openSUSE Leap 15.6", "deprecated": false,
+ "size": 1200, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
"description": "", "created_by": "linode", "type": "manual", "tags": [], "is_public":
- true, "vendor": "Rocky", "expiry": null, "eol": "2018-01-02T03:04:05", "status":
- "available", "capabilities": []}, {"id": "linode/slackware15.0", "label": "Slackware
- 15.0", "deprecated": false, "size": 11000, "created": "2018-01-02T03:04:05",
- "updated": "2018-01-02T03:04:05", "description": "", "created_by": "linode",
- "type": "manual", "tags": [], "is_public": true, "vendor": "Slackware", "expiry":
- null, "eol": null, "status": "available", "capabilities": []}, {"id": "linode/ubuntu20.04",
- "label": "Ubuntu 20.04 LTS", "deprecated": false, "size": 2000, "created": "2018-01-02T03:04:05",
+ true, "vendor": "openSUSE", "expiry": null, "eol": "2018-01-02T03:04:05", "status":
+ "available", "capabilities": []}, {"id": "linode/rocky8", "label": "Rocky Linux
+ 8", "deprecated": false, "size": 2800, "created": "2018-01-02T03:04:05", "updated":
+ "2018-01-02T03:04:05", "description": "", "created_by": "linode", "type": "manual",
+ "tags": [], "is_public": true, "vendor": "Rocky", "expiry": null, "eol": "2018-01-02T03:04:05",
+ "status": "available", "capabilities": []}, {"id": "linode/rocky9", "label":
+ "Rocky Linux 9", "deprecated": false, "size": 2300, "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "description": "", "created_by": "linode",
- "type": "manual", "tags": [], "is_public": true, "vendor": "Ubuntu", "expiry":
- null, "eol": "2018-01-02T03:04:05", "status": "available", "capabilities": ["cloud-init"]},
- {"id": "linode/ubuntu22.04", "label": "Ubuntu 22.04 LTS", "deprecated": false,
- "size": 3500, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "type": "manual", "tags": [], "is_public": true, "vendor": "Rocky", "expiry":
+ null, "eol": "2018-01-02T03:04:05", "status": "available", "capabilities": []},
+ {"id": "linode/slackware15.0", "label": "Slackware 15.0", "deprecated": false,
+ "size": 11000, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
"description": "", "created_by": "linode", "type": "manual", "tags": [], "is_public":
- true, "vendor": "Ubuntu", "expiry": null, "eol": "2018-01-02T03:04:05", "status":
- "available", "capabilities": ["cloud-init"]}, {"id": "linode/ubuntu23.04", "label":
- "Ubuntu 23.04", "deprecated": false, "size": 3500, "created": "2018-01-02T03:04:05",
+ true, "vendor": "Slackware", "expiry": null, "eol": null, "status": "available",
+ "capabilities": []}, {"id": "linode/ubuntu20.04", "label": "Ubuntu 20.04 LTS",
+ "deprecated": false, "size": 2000, "created": "2018-01-02T03:04:05", "updated":
+ "2018-01-02T03:04:05", "description": "", "created_by": "linode", "type": "manual",
+ "tags": [], "is_public": true, "vendor": "Ubuntu", "expiry": null, "eol": "2018-01-02T03:04:05",
+ "status": "available", "capabilities": ["cloud-init"]}, {"id": "linode/ubuntu22.04",
+ "label": "Ubuntu 22.04 LTS", "deprecated": false, "size": 3500, "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "description": "", "created_by": "linode",
"type": "manual", "tags": [], "is_public": true, "vendor": "Ubuntu", "expiry":
- null, "eol": "2018-01-02T03:04:05", "status": "available", "capabilities": []},
+ null, "eol": "2018-01-02T03:04:05", "status": "available", "capabilities": ["cloud-init"]},
{"id": "linode/ubuntu23.10", "label": "Ubuntu 23.10", "deprecated": false, "size":
3500, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "description":
"", "created_by": "linode", "type": "manual", "tags": [], "is_public": true,
@@ -160,37 +141,42 @@ interactions:
"updated": "2018-01-02T03:04:05", "description": "", "created_by": "linode",
"type": "manual", "tags": [], "is_public": true, "vendor": "Ubuntu", "expiry":
null, "eol": "2018-01-02T03:04:05", "status": "available", "capabilities": ["cloud-init"]},
- {"id": "linode/debian9", "label": "Debian 9", "deprecated": true, "size": 1600,
- "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "description":
+ {"id": "linode/alpine3.16", "label": "Alpine 3.16", "deprecated": true, "size":
+ 400, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "description":
"", "created_by": "linode", "type": "manual", "tags": [], "is_public": true,
- "vendor": "Debian", "expiry": null, "eol": "2018-01-02T03:04:05", "status":
- "available", "capabilities": []}, {"id": "linode/fedora37", "label": "Fedora
- 37", "deprecated": true, "size": 1800, "created": "2018-01-02T03:04:05", "updated":
+ "vendor": "Alpine", "expiry": null, "eol": "2018-01-02T03:04:05", "status":
+ "available", "capabilities": []}, {"id": "linode/centos7", "label": "CentOS
+ 7", "deprecated": true, "size": 2800, "created": "2018-01-02T03:04:05", "updated":
"2018-01-02T03:04:05", "description": "", "created_by": "linode", "type": "manual",
- "tags": [], "is_public": true, "vendor": "Fedora", "expiry": null, "eol": "2018-01-02T03:04:05",
- "status": "available", "capabilities": []}, {"id": "linode/opensuse15.4", "label":
- "openSUSE Leap 15.4", "deprecated": true, "size": 1550, "created": "2018-01-02T03:04:05",
+ "tags": [], "is_public": true, "vendor": "CentOS", "expiry": null, "eol": "2018-01-02T03:04:05",
+ "status": "available", "capabilities": []}, {"id": "linode/centos-stream8",
+ "label": "CentOS Stream 8", "deprecated": true, "size": 2600, "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "description": "", "created_by": "linode",
- "type": "manual", "tags": [], "is_public": true, "vendor": "openSUSE", "expiry":
+ "type": "manual", "tags": [], "is_public": true, "vendor": "CentOS", "expiry":
null, "eol": "2018-01-02T03:04:05", "status": "available", "capabilities": []},
- {"id": "linode/slackware14.1", "label": "Slackware 14.1", "deprecated": true,
- "size": 1000, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "description": null, "created_by": "linode", "type": "manual", "tags": [], "is_public":
- true, "vendor": "Slackware", "expiry": null, "eol": "2018-01-02T03:04:05", "status":
- "available", "capabilities": []}, {"id": "linode/slackware14.2", "label": "Slackware
- 14.2", "deprecated": true, "size": 6000, "created": "2018-01-02T03:04:05", "updated":
+ {"id": "linode/debian10", "label": "Debian 10", "deprecated": true, "size":
+ 1500, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "description":
+ "", "created_by": "linode", "type": "manual", "tags": [], "is_public": true,
+ "vendor": "Debian", "expiry": null, "eol": "2018-01-02T03:04:05", "status":
+ "available", "capabilities": []}, {"id": "linode/debian9", "label": "Debian
+ 9", "deprecated": true, "size": 1600, "created": "2018-01-02T03:04:05", "updated":
"2018-01-02T03:04:05", "description": "", "created_by": "linode", "type": "manual",
- "tags": [], "is_public": true, "vendor": "Slackware", "expiry": null, "eol":
- "2018-01-02T03:04:05", "status": "available", "capabilities": []}, {"id": "linode/ubuntu16.04lts",
- "label": "Ubuntu 16.04 LTS", "deprecated": true, "size": 2700, "created": "2018-01-02T03:04:05",
+ "tags": [], "is_public": true, "vendor": "Debian", "expiry": null, "eol": "2018-01-02T03:04:05",
+ "status": "available", "capabilities": []}, {"id": "linode/fedora38", "label":
+ "Fedora 38", "deprecated": true, "size": 1600, "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "description": "", "created_by": "linode",
- "type": "manual", "tags": [], "is_public": true, "vendor": "Ubuntu", "expiry":
+ "type": "manual", "tags": [], "is_public": true, "vendor": "Fedora", "expiry":
null, "eol": "2018-01-02T03:04:05", "status": "available", "capabilities": []},
- {"id": "linode/ubuntu18.04", "label": "Ubuntu 18.04 LTS", "deprecated": true,
+ {"id": "linode/ubuntu16.04lts", "label": "Ubuntu 16.04 LTS", "deprecated": true,
"size": 2700, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
"description": "", "created_by": "linode", "type": "manual", "tags": [], "is_public":
true, "vendor": "Ubuntu", "expiry": null, "eol": "2018-01-02T03:04:05", "status":
- "available", "capabilities": []}], "page": 1, "pages": 1, "results": 40}'
+ "available", "capabilities": []}, {"id": "linode/ubuntu18.04", "label": "Ubuntu
+ 18.04 LTS", "deprecated": true, "size": 2700, "created": "2018-01-02T03:04:05",
+ "updated": "2018-01-02T03:04:05", "description": "", "created_by": "linode",
+ "type": "manual", "tags": [], "is_public": true, "vendor": "Ubuntu", "expiry":
+ null, "eol": "2018-01-02T03:04:05", "status": "available", "capabilities": []}],
+ "results": 37, "page": 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -202,6 +188,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -211,7 +199,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 31 May 2024 17:08:36 GMT
+ - Thu, 25 Jul 2024 17:44:51 GMT
Pragma:
- no-cache
Strict-Transport-Security:
diff --git a/test/integration/fixtures/TestInstanceBackups_List.yaml b/test/integration/fixtures/TestInstanceBackups_List.yaml
index 652e07564..8efdc543c 100644
--- a/test/integration/fixtures/TestInstanceBackups_List.yaml
+++ b/test/integration/fixtures/TestInstanceBackups_List.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 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"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
+ 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
+ "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,114 +166,142 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 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,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "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,
+ Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
+ 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
+ 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
+ "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
+ 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
+ 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -282,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -291,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:48:27 GMT
+ - Thu, 25 Jul 2024 18:43:44 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -308,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -317,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-63gqb1484bax","firewall_id":610685,"booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-14x573eovrw1","firewall_id":693098,"booted":false}'
form: {}
headers:
Accept:
@@ -329,16 +365,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 60779324, "label": "go-test-ins-wo-disk-63gqb1484bax", "group":
+ body: '{"id": 61876053, "label": "go-test-ins-wo-disk-14x573eovrw1", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.35.92"], "ipv6": "1234::5678/128",
- "image": null, "region": "ap-west", "specs": {"disk": 25600, "memory": 1024,
- "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "009ae04397a377b736399352007156c94585f928", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["172.105.40.58"], "ipv6": "1234::5678/128",
+ "image": null, "region": "ap-west", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu":
+ 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io": 10000},
+ "backups": {"enabled": true, "available": false, "schedule": {"day": null, "window":
+ null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true,
+ "tags": [], "host_uuid": "0e0c1ef96c34828ce8b53e9e04870191260828c7", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -350,18 +386,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "785"
+ - "806"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:48:28 GMT
+ - Thu, 25 Jul 2024 18:43:44 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -376,7 +414,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -385,7 +426,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-4bjm21q2t8r0","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-3ky473f0f2sb","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -394,11 +435,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60779324/configs
+ url: https://api.linode.com/v4beta/linode/instances/61876053/configs
method: POST
response:
- body: '{"id": 63987204, "label": "go-test-conf-4bjm21q2t8r0", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ body: '{"id": 65096567, "label": "go-test-conf-3ky473f0f2sb", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
@@ -415,102 +456,38 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "539"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Fri, 28 Jun 2024 18:48:28 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - linodes:read_write
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
+ Akamai-Internal-Account:
- '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60779324
- method: GET
- response:
- body: '{"id": 60779324, "label": "go-test-ins-wo-disk-63gqb1484bax", "group":
- "", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.35.92"], "ipv6": "1234::5678/128",
- "image": null, "region": "ap-west", "specs": {"disk": 25600, "memory": 1024,
- "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": "Scheduling", "window": "Scheduling"},
- "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags":
- [], "host_uuid": "009ae04397a377b736399352007156c94585f928", "has_user_data":
- false, "placement_group": null, "lke_cluster_id": null}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "801"
+ - "540"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:48:43 GMT
+ - Thu, 25 Jul 2024 18:43:44 GMT
Pragma:
- no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- Authorization, X-Filter
- - Authorization, X-Filter
X-Accepted-Oauth-Scopes:
- - linodes:read_only
+ - linodes:read_write
X-Content-Type-Options:
- nosniff
X-Frame-Options:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -528,18 +505,18 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60779324
+ url: https://api.linode.com/v4beta/linode/instances/61876053
method: GET
response:
- body: '{"id": 60779324, "label": "go-test-ins-wo-disk-63gqb1484bax", "group":
+ body: '{"id": 61876053, "label": "go-test-ins-wo-disk-14x573eovrw1", "group":
"", "status": "offline", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.35.92"], "ipv6": "1234::5678/128",
- "image": null, "region": "ap-west", "specs": {"disk": 25600, "memory": 1024,
- "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": "Scheduling", "window": "Scheduling"},
- "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags":
- [], "host_uuid": "009ae04397a377b736399352007156c94585f928", "has_user_data":
+ "type": "g6-nanode-1", "ipv4": ["172.105.40.58"], "ipv6": "1234::5678/128",
+ "image": null, "region": "ap-west", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu":
+ 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io": 10000},
+ "backups": {"enabled": true, "available": false, "schedule": {"day": "Scheduling",
+ "window": "Scheduling"}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled":
+ true, "tags": [], "host_uuid": "0e0c1ef96c34828ce8b53e9e04870191260828c7", "has_user_data":
false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
@@ -552,18 +529,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "796"
+ - "817"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:48:58 GMT
+ - Thu, 25 Jul 2024 18:43:59 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -579,7 +558,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -597,10 +579,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60779324/disks
+ url: https://api.linode.com/v4beta/linode/instances/61876053/disks
method: POST
response:
- body: '{"id": 119519925, "status": "not ready", "label": "linodego-disk-test",
+ body: '{"id": 121427060, "status": "not ready", "label": "linodego-disk-test",
"created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "filesystem":
"ext4", "size": 10}'
headers:
@@ -614,6 +596,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -625,7 +609,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:48:59 GMT
+ - Thu, 25 Jul 2024 18:44:00 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -640,7 +624,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -659,16 +646,16 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"disk_create","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":60779324,"entity.type":"linode"}'
+ - '{"+order":"desc","+order_by":"created","action":"disk_create","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":61876053,"entity.type":"linode"}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 759968116, "created": "2018-01-02T03:04:05", "seen": false,
- "read": false, "percent_complete": 100, "time_remaining": 0, "rate": null, "duration":
- 14.0, "action": "disk_create", "username": "ErikZilber", "entity": {"label":
- "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type": "linode", "url":
- "/v4/linode/instances/60779324"}, "status": "finished", "secondary_entity":
- {"id": 119519925, "type": "disk", "label": "linodego-disk-test", "url": "/v4/linode/instances/60779324/disks/119519925"},
+ body: '{"data": [{"id": 788268204, "created": "2018-01-02T03:04:05", "seen": false,
+ "read": false, "percent_complete": 100, "time_remaining": null, "rate": null,
+ "duration": 7.0, "action": "disk_create", "username": "ychen123", "entity":
+ {"label": "go-test-ins-wo-disk-14x573eovrw1", "id": 61876053, "type": "linode",
+ "url": "/v4/linode/instances/61876053"}, "status": "finished", "secondary_entity":
+ {"id": 121427060, "type": "disk", "label": "linodego-disk-test", "url": "/v4/linode/instances/61876053/disks/121427060"},
"message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -681,6 +668,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -692,7 +681,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:49:14 GMT
+ - Thu, 25 Jul 2024 18:44:15 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -708,7 +697,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -726,7 +718,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60779324/backups/enable
+ url: https://api.linode.com/v4beta/linode/instances/61876053/backups/enable
method: POST
response:
body: '{}'
@@ -741,6 +733,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -752,7 +746,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:49:14 GMT
+ - Thu, 25 Jul 2024 18:44:15 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -767,7 +761,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -785,10 +782,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60779324/backups
+ url: https://api.linode.com/v4beta/linode/instances/61876053/backups
method: POST
response:
- body: '{"id": 295859215, "region": "ap-west", "type": "snapshot", "status": "pending",
+ body: '{"id": 298852965, "region": "ap-west", "type": "snapshot", "status": "pending",
"available": true, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
"finished": null, "label": "snapshot-linodego-testing", "configs": [], "disks":
[]}'
@@ -803,6 +800,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -814,7 +813,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:49:19 GMT
+ - Thu, 25 Jul 2024 18:44:19 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -829,7 +828,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -848,15 +850,15 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":60779324,"entity.type":"linode"}'
+ - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":61876053,"entity.type":"linode"}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 759968348, "created": "2018-01-02T03:04:05", "seen": false,
+ body: '{"data": [{"id": 788268407, "created": "2018-01-02T03:04:05", "seen": false,
"read": false, "percent_complete": 0, "time_remaining": null, "rate": null,
- "duration": 15, "action": "linode_snapshot", "username": "ErikZilber", "entity":
- {"label": "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type": "linode",
- "url": "/v4/linode/instances/60779324"}, "status": "started", "secondary_entity":
+ "duration": 14, "action": "linode_snapshot", "username": "ychen123", "entity":
+ {"label": "go-test-ins-wo-disk-14x573eovrw1", "id": 61876053, "type": "linode",
+ "url": "/v4/linode/instances/61876053"}, "status": "started", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -869,18 +871,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "455"
+ - "453"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:49:35 GMT
+ - Thu, 25 Jul 2024 18:44:34 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -896,7 +900,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -915,15 +922,15 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":60779324,"entity.type":"linode","id":{"+gte":759968348}}'
+ - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":61876053,"entity.type":"linode","id":{"+gte":788268407}}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 759968348, "created": "2018-01-02T03:04:05", "seen": false,
+ body: '{"data": [{"id": 788268407, "created": "2018-01-02T03:04:05", "seen": false,
"read": false, "percent_complete": 0, "time_remaining": null, "rate": null,
- "duration": 30, "action": "linode_snapshot", "username": "ErikZilber", "entity":
- {"label": "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type": "linode",
- "url": "/v4/linode/instances/60779324"}, "status": "started", "secondary_entity":
+ "duration": 29, "action": "linode_snapshot", "username": "ychen123", "entity":
+ {"label": "go-test-ins-wo-disk-14x573eovrw1", "id": 61876053, "type": "linode",
+ "url": "/v4/linode/instances/61876053"}, "status": "started", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -936,18 +943,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "455"
+ - "453"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:49:50 GMT
+ - Thu, 25 Jul 2024 18:44:49 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -963,7 +972,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -982,15 +994,15 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":60779324,"entity.type":"linode","id":{"+gte":759968348}}'
+ - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":61876053,"entity.type":"linode","id":{"+gte":788268407}}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 759968348, "created": "2018-01-02T03:04:05", "seen": false,
+ body: '{"data": [{"id": 788268407, "created": "2018-01-02T03:04:05", "seen": false,
"read": false, "percent_complete": 0, "time_remaining": null, "rate": null,
- "duration": 44, "action": "linode_snapshot", "username": "ErikZilber", "entity":
- {"label": "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type": "linode",
- "url": "/v4/linode/instances/60779324"}, "status": "started", "secondary_entity":
+ "duration": 44, "action": "linode_snapshot", "username": "ychen123", "entity":
+ {"label": "go-test-ins-wo-disk-14x573eovrw1", "id": 61876053, "type": "linode",
+ "url": "/v4/linode/instances/61876053"}, "status": "started", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1003,18 +1015,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "455"
+ - "453"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:50:05 GMT
+ - Thu, 25 Jul 2024 18:45:05 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1030,7 +1044,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -1049,15 +1066,15 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":60779324,"entity.type":"linode","id":{"+gte":759968348}}'
+ - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":61876053,"entity.type":"linode","id":{"+gte":788268407}}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 759968348, "created": "2018-01-02T03:04:05", "seen": false,
+ body: '{"data": [{"id": 788268407, "created": "2018-01-02T03:04:05", "seen": false,
"read": false, "percent_complete": 0, "time_remaining": null, "rate": null,
- "duration": 59, "action": "linode_snapshot", "username": "ErikZilber", "entity":
- {"label": "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type": "linode",
- "url": "/v4/linode/instances/60779324"}, "status": "started", "secondary_entity":
+ "duration": 59, "action": "linode_snapshot", "username": "ychen123", "entity":
+ {"label": "go-test-ins-wo-disk-14x573eovrw1", "id": 61876053, "type": "linode",
+ "url": "/v4/linode/instances/61876053"}, "status": "started", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1070,18 +1087,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "455"
+ - "453"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:50:20 GMT
+ - Thu, 25 Jul 2024 18:45:19 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1097,7 +1116,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -1116,15 +1138,15 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":60779324,"entity.type":"linode","id":{"+gte":759968348}}'
+ - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":61876053,"entity.type":"linode","id":{"+gte":788268407}}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 759968348, "created": "2018-01-02T03:04:05", "seen": false,
+ body: '{"data": [{"id": 788268407, "created": "2018-01-02T03:04:05", "seen": false,
"read": false, "percent_complete": 0, "time_remaining": null, "rate": null,
- "duration": 74, "action": "linode_snapshot", "username": "ErikZilber", "entity":
- {"label": "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type": "linode",
- "url": "/v4/linode/instances/60779324"}, "status": "started", "secondary_entity":
+ "duration": 74, "action": "linode_snapshot", "username": "ychen123", "entity":
+ {"label": "go-test-ins-wo-disk-14x573eovrw1", "id": 61876053, "type": "linode",
+ "url": "/v4/linode/instances/61876053"}, "status": "started", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1137,18 +1159,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "455"
+ - "453"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:50:35 GMT
+ - Thu, 25 Jul 2024 18:45:34 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1164,7 +1188,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -1183,15 +1210,15 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":60779324,"entity.type":"linode","id":{"+gte":759968348}}'
+ - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":61876053,"entity.type":"linode","id":{"+gte":788268407}}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 759968348, "created": "2018-01-02T03:04:05", "seen": false,
+ body: '{"data": [{"id": 788268407, "created": "2018-01-02T03:04:05", "seen": false,
"read": false, "percent_complete": 0, "time_remaining": null, "rate": null,
- "duration": 90, "action": "linode_snapshot", "username": "ErikZilber", "entity":
- {"label": "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type": "linode",
- "url": "/v4/linode/instances/60779324"}, "status": "started", "secondary_entity":
+ "duration": 89, "action": "linode_snapshot", "username": "ychen123", "entity":
+ {"label": "go-test-ins-wo-disk-14x573eovrw1", "id": 61876053, "type": "linode",
+ "url": "/v4/linode/instances/61876053"}, "status": "started", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1204,18 +1231,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "455"
+ - "453"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:50:50 GMT
+ - Thu, 25 Jul 2024 18:45:49 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1231,7 +1260,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -1250,15 +1282,15 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":60779324,"entity.type":"linode","id":{"+gte":759968348}}'
+ - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":61876053,"entity.type":"linode","id":{"+gte":788268407}}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 759968348, "created": "2018-01-02T03:04:05", "seen": false,
+ body: '{"data": [{"id": 788268407, "created": "2018-01-02T03:04:05", "seen": false,
"read": false, "percent_complete": 0, "time_remaining": null, "rate": null,
- "duration": 104, "action": "linode_snapshot", "username": "ErikZilber", "entity":
- {"label": "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type": "linode",
- "url": "/v4/linode/instances/60779324"}, "status": "started", "secondary_entity":
+ "duration": 104, "action": "linode_snapshot", "username": "ychen123", "entity":
+ {"label": "go-test-ins-wo-disk-14x573eovrw1", "id": 61876053, "type": "linode",
+ "url": "/v4/linode/instances/61876053"}, "status": "started", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1271,18 +1303,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "456"
+ - "454"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:51:05 GMT
+ - Thu, 25 Jul 2024 18:46:05 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1298,7 +1332,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -1317,15 +1354,15 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":60779324,"entity.type":"linode","id":{"+gte":759968348}}'
+ - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":61876053,"entity.type":"linode","id":{"+gte":788268407}}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 759968348, "created": "2018-01-02T03:04:05", "seen": false,
+ body: '{"data": [{"id": 788268407, "created": "2018-01-02T03:04:05", "seen": false,
"read": false, "percent_complete": 0, "time_remaining": null, "rate": null,
- "duration": 119, "action": "linode_snapshot", "username": "ErikZilber", "entity":
- {"label": "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type": "linode",
- "url": "/v4/linode/instances/60779324"}, "status": "started", "secondary_entity":
+ "duration": 120, "action": "linode_snapshot", "username": "ychen123", "entity":
+ {"label": "go-test-ins-wo-disk-14x573eovrw1", "id": 61876053, "type": "linode",
+ "url": "/v4/linode/instances/61876053"}, "status": "started", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1338,18 +1375,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "456"
+ - "454"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:51:20 GMT
+ - Thu, 25 Jul 2024 18:46:20 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1365,7 +1404,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -1384,15 +1426,15 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":60779324,"entity.type":"linode","id":{"+gte":759968348}}'
+ - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":61876053,"entity.type":"linode","id":{"+gte":788268407}}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 759968348, "created": "2018-01-02T03:04:05", "seen": false,
+ body: '{"data": [{"id": 788268407, "created": "2018-01-02T03:04:05", "seen": false,
"read": false, "percent_complete": 0, "time_remaining": null, "rate": null,
- "duration": 135, "action": "linode_snapshot", "username": "ErikZilber", "entity":
- {"label": "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type": "linode",
- "url": "/v4/linode/instances/60779324"}, "status": "started", "secondary_entity":
+ "duration": 134, "action": "linode_snapshot", "username": "ychen123", "entity":
+ {"label": "go-test-ins-wo-disk-14x573eovrw1", "id": 61876053, "type": "linode",
+ "url": "/v4/linode/instances/61876053"}, "status": "started", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1405,18 +1447,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "456"
+ - "454"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:51:35 GMT
+ - Thu, 25 Jul 2024 18:46:35 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1432,7 +1476,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -1451,15 +1498,15 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":60779324,"entity.type":"linode","id":{"+gte":759968348}}'
+ - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":61876053,"entity.type":"linode","id":{"+gte":788268407}}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 759968348, "created": "2018-01-02T03:04:05", "seen": false,
+ body: '{"data": [{"id": 788268407, "created": "2018-01-02T03:04:05", "seen": false,
"read": false, "percent_complete": 0, "time_remaining": null, "rate": null,
- "duration": 149, "action": "linode_snapshot", "username": "ErikZilber", "entity":
- {"label": "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type": "linode",
- "url": "/v4/linode/instances/60779324"}, "status": "started", "secondary_entity":
+ "duration": 150, "action": "linode_snapshot", "username": "ychen123", "entity":
+ {"label": "go-test-ins-wo-disk-14x573eovrw1", "id": 61876053, "type": "linode",
+ "url": "/v4/linode/instances/61876053"}, "status": "started", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1472,18 +1519,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "456"
+ - "454"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:51:50 GMT
+ - Thu, 25 Jul 2024 18:46:50 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1499,7 +1548,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -1518,15 +1570,15 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":60779324,"entity.type":"linode","id":{"+gte":759968348}}'
+ - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":61876053,"entity.type":"linode","id":{"+gte":788268407}}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 759968348, "created": "2018-01-02T03:04:05", "seen": false,
+ body: '{"data": [{"id": 788268407, "created": "2018-01-02T03:04:05", "seen": false,
"read": false, "percent_complete": 0, "time_remaining": null, "rate": null,
- "duration": 165, "action": "linode_snapshot", "username": "ErikZilber", "entity":
- {"label": "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type": "linode",
- "url": "/v4/linode/instances/60779324"}, "status": "started", "secondary_entity":
+ "duration": 164, "action": "linode_snapshot", "username": "ychen123", "entity":
+ {"label": "go-test-ins-wo-disk-14x573eovrw1", "id": 61876053, "type": "linode",
+ "url": "/v4/linode/instances/61876053"}, "status": "started", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1539,18 +1591,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "456"
+ - "454"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:52:05 GMT
+ - Thu, 25 Jul 2024 18:47:04 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1566,7 +1620,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -1585,15 +1642,15 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":60779324,"entity.type":"linode","id":{"+gte":759968348}}'
+ - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":61876053,"entity.type":"linode","id":{"+gte":788268407}}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 759968348, "created": "2018-01-02T03:04:05", "seen": false,
+ body: '{"data": [{"id": 788268407, "created": "2018-01-02T03:04:05", "seen": false,
"read": false, "percent_complete": 0, "time_remaining": null, "rate": null,
- "duration": 179, "action": "linode_snapshot", "username": "ErikZilber", "entity":
- {"label": "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type": "linode",
- "url": "/v4/linode/instances/60779324"}, "status": "started", "secondary_entity":
+ "duration": 180, "action": "linode_snapshot", "username": "ychen123", "entity":
+ {"label": "go-test-ins-wo-disk-14x573eovrw1", "id": 61876053, "type": "linode",
+ "url": "/v4/linode/instances/61876053"}, "status": "started", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1606,18 +1663,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "456"
+ - "454"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:52:20 GMT
+ - Thu, 25 Jul 2024 18:47:20 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1633,7 +1692,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -1652,15 +1714,15 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":60779324,"entity.type":"linode","id":{"+gte":759968348}}'
+ - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":61876053,"entity.type":"linode","id":{"+gte":788268407}}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 759968348, "created": "2018-01-02T03:04:05", "seen": false,
+ body: '{"data": [{"id": 788268407, "created": "2018-01-02T03:04:05", "seen": false,
"read": false, "percent_complete": 0, "time_remaining": null, "rate": null,
- "duration": 195, "action": "linode_snapshot", "username": "ErikZilber", "entity":
- {"label": "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type": "linode",
- "url": "/v4/linode/instances/60779324"}, "status": "started", "secondary_entity":
+ "duration": 194, "action": "linode_snapshot", "username": "ychen123", "entity":
+ {"label": "go-test-ins-wo-disk-14x573eovrw1", "id": 61876053, "type": "linode",
+ "url": "/v4/linode/instances/61876053"}, "status": "started", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1673,85 +1735,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "456"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Fri, 28 Jun 2024 18:52:35 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - events:read_only
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
+ Akamai-Internal-Account:
- '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - linodego/dev https://github.com/linode/linodego
- X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":60779324,"entity.type":"linode","id":{"+gte":759968348}}'
- url: https://api.linode.com/v4beta/account/events?page=1
- method: GET
- response:
- body: '{"data": [{"id": 759968348, "created": "2018-01-02T03:04:05", "seen": false,
- "read": false, "percent_complete": 50, "time_remaining": null, "rate": null,
- "duration": 209, "action": "linode_snapshot", "username": "ErikZilber", "entity":
- {"label": "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type": "linode",
- "url": "/v4/linode/instances/60779324"}, "status": "started", "secondary_entity":
- null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "457"
+ - "454"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:52:50 GMT
+ - Thu, 25 Jul 2024 18:47:35 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1767,7 +1764,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -1786,15 +1786,15 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":60779324,"entity.type":"linode","id":{"+gte":759968348}}'
+ - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":61876053,"entity.type":"linode","id":{"+gte":788268407}}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 759968348, "created": "2018-01-02T03:04:05", "seen": false,
- "read": false, "percent_complete": 50, "time_remaining": null, "rate": null,
- "duration": 224, "action": "linode_snapshot", "username": "ErikZilber", "entity":
- {"label": "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type": "linode",
- "url": "/v4/linode/instances/60779324"}, "status": "started", "secondary_entity":
+ body: '{"data": [{"id": 788268407, "created": "2018-01-02T03:04:05", "seen": false,
+ "read": false, "percent_complete": 0, "time_remaining": null, "rate": null,
+ "duration": 209, "action": "linode_snapshot", "username": "ychen123", "entity":
+ {"label": "go-test-ins-wo-disk-14x573eovrw1", "id": 61876053, "type": "linode",
+ "url": "/v4/linode/instances/61876053"}, "status": "started", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1807,18 +1807,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "457"
+ - "454"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:53:05 GMT
+ - Thu, 25 Jul 2024 18:47:49 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1834,7 +1836,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -1853,15 +1858,15 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":60779324,"entity.type":"linode","id":{"+gte":759968348}}'
+ - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":61876053,"entity.type":"linode","id":{"+gte":788268407}}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 759968348, "created": "2018-01-02T03:04:05", "seen": false,
+ body: '{"data": [{"id": 788268407, "created": "2018-01-02T03:04:05", "seen": false,
"read": false, "percent_complete": 50, "time_remaining": null, "rate": null,
- "duration": 239, "action": "linode_snapshot", "username": "ErikZilber", "entity":
- {"label": "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type": "linode",
- "url": "/v4/linode/instances/60779324"}, "status": "started", "secondary_entity":
+ "duration": 224, "action": "linode_snapshot", "username": "ychen123", "entity":
+ {"label": "go-test-ins-wo-disk-14x573eovrw1", "id": 61876053, "type": "linode",
+ "url": "/v4/linode/instances/61876053"}, "status": "started", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1874,18 +1879,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "457"
+ - "455"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:53:20 GMT
+ - Thu, 25 Jul 2024 18:48:05 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1901,7 +1908,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -1920,15 +1930,15 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":60779324,"entity.type":"linode","id":{"+gte":759968348}}'
+ - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":61876053,"entity.type":"linode","id":{"+gte":788268407}}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 759968348, "created": "2018-01-02T03:04:05", "seen": false,
+ body: '{"data": [{"id": 788268407, "created": "2018-01-02T03:04:05", "seen": false,
"read": false, "percent_complete": 50, "time_remaining": null, "rate": null,
- "duration": 255, "action": "linode_snapshot", "username": "ErikZilber", "entity":
- {"label": "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type": "linode",
- "url": "/v4/linode/instances/60779324"}, "status": "started", "secondary_entity":
+ "duration": 239, "action": "linode_snapshot", "username": "ychen123", "entity":
+ {"label": "go-test-ins-wo-disk-14x573eovrw1", "id": 61876053, "type": "linode",
+ "url": "/v4/linode/instances/61876053"}, "status": "started", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1941,18 +1951,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "457"
+ - "455"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:53:35 GMT
+ - Thu, 25 Jul 2024 18:48:19 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1968,7 +1980,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -1987,15 +2002,15 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":60779324,"entity.type":"linode","id":{"+gte":759968348}}'
+ - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":61876053,"entity.type":"linode","id":{"+gte":788268407}}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 759968348, "created": "2018-01-02T03:04:05", "seen": false,
+ body: '{"data": [{"id": 788268407, "created": "2018-01-02T03:04:05", "seen": false,
"read": false, "percent_complete": 50, "time_remaining": null, "rate": null,
- "duration": 269, "action": "linode_snapshot", "username": "ErikZilber", "entity":
- {"label": "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type": "linode",
- "url": "/v4/linode/instances/60779324"}, "status": "started", "secondary_entity":
+ "duration": 254, "action": "linode_snapshot", "username": "ychen123", "entity":
+ {"label": "go-test-ins-wo-disk-14x573eovrw1", "id": 61876053, "type": "linode",
+ "url": "/v4/linode/instances/61876053"}, "status": "started", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -2008,18 +2023,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "457"
+ - "455"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:53:50 GMT
+ - Thu, 25 Jul 2024 18:48:34 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2035,7 +2052,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -2054,15 +2074,15 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":60779324,"entity.type":"linode","id":{"+gte":759968348}}'
+ - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":61876053,"entity.type":"linode","id":{"+gte":788268407}}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 759968348, "created": "2018-01-02T03:04:05", "seen": false,
+ body: '{"data": [{"id": 788268407, "created": "2018-01-02T03:04:05", "seen": false,
"read": false, "percent_complete": 50, "time_remaining": null, "rate": null,
- "duration": 285, "action": "linode_snapshot", "username": "ErikZilber", "entity":
- {"label": "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type": "linode",
- "url": "/v4/linode/instances/60779324"}, "status": "started", "secondary_entity":
+ "duration": 269, "action": "linode_snapshot", "username": "ychen123", "entity":
+ {"label": "go-test-ins-wo-disk-14x573eovrw1", "id": 61876053, "type": "linode",
+ "url": "/v4/linode/instances/61876053"}, "status": "started", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -2075,18 +2095,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "457"
+ - "455"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:54:05 GMT
+ - Thu, 25 Jul 2024 18:48:50 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2102,7 +2124,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -2121,15 +2146,15 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":60779324,"entity.type":"linode","id":{"+gte":759968348}}'
+ - '{"+order":"desc","+order_by":"created","action":"linode_snapshot","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":61876053,"entity.type":"linode","id":{"+gte":788268407}}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 759968348, "created": "2018-01-02T03:04:05", "seen": false,
+ body: '{"data": [{"id": 788268407, "created": "2018-01-02T03:04:05", "seen": false,
"read": false, "percent_complete": 100, "time_remaining": null, "rate": null,
- "duration": 299, "action": "linode_snapshot", "username": "ErikZilber", "entity":
- {"label": "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type": "linode",
- "url": "/v4/linode/instances/60779324"}, "status": "finished", "secondary_entity":
+ "duration": 285, "action": "linode_snapshot", "username": "ychen123", "entity":
+ {"label": "go-test-ins-wo-disk-14x573eovrw1", "id": 61876053, "type": "linode",
+ "url": "/v4/linode/instances/61876053"}, "status": "finished", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -2142,18 +2167,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "459"
+ - "457"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:54:20 GMT
+ - Thu, 25 Jul 2024 18:49:05 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2169,7 +2196,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -2187,13 +2217,13 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60779324/backups/295859215
+ url: https://api.linode.com/v4beta/linode/instances/61876053/backups/298852965
method: GET
response:
- body: '{"id": 295859215, "region": "ap-west", "type": "snapshot", "status": "successful",
+ body: '{"id": 298852965, "region": "ap-west", "type": "snapshot", "status": "successful",
"available": true, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
"finished": "2018-01-02T03:04:05", "label": "snapshot-linodego-testing", "configs":
- ["go-test-conf-4bjm21q2t8r0"], "disks": [{"label": "linodego-disk-test", "size":
+ ["go-test-conf-3ky473f0f2sb"], "disks": [{"label": "linodego-disk-test", "size":
10, "filesystem": "ext4"}]}'
headers:
Access-Control-Allow-Credentials:
@@ -2206,6 +2236,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -2217,7 +2249,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:54:20 GMT
+ - Thu, 25 Jul 2024 18:49:05 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2233,7 +2265,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -2251,19 +2286,19 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60779324
+ url: https://api.linode.com/v4beta/linode/instances/61876053
method: GET
response:
- body: '{"id": 60779324, "label": "go-test-ins-wo-disk-63gqb1484bax", "group":
+ body: '{"id": 61876053, "label": "go-test-ins-wo-disk-14x573eovrw1", "group":
"", "status": "offline", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.35.92"], "ipv6": "1234::5678/128",
- "image": null, "region": "ap-west", "specs": {"disk": 25600, "memory": 1024,
- "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": true, "schedule": {"day": "Scheduling", "window": "Scheduling"},
- "last_successful": "2018-01-02T03:04:05"}, "hypervisor": "kvm", "watchdog_enabled":
- true, "tags": [], "host_uuid": "009ae04397a377b736399352007156c94585f928", "has_user_data":
- false, "placement_group": null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["172.105.40.58"], "ipv6": "1234::5678/128",
+ "image": null, "region": "ap-west", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu":
+ 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io": 10000},
+ "backups": {"enabled": true, "available": true, "schedule": {"day": "Scheduling",
+ "window": "Scheduling"}, "last_successful": "2018-01-02T03:04:05"}, "hypervisor":
+ "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "0e0c1ef96c34828ce8b53e9e04870191260828c7",
+ "has_user_data": false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2275,18 +2310,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "812"
+ - "833"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:54:20 GMT
+ - Thu, 25 Jul 2024 18:49:05 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2302,7 +2339,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -2320,13 +2360,13 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60779324/backups
+ url: https://api.linode.com/v4beta/linode/instances/61876053/backups
method: GET
response:
- body: '{"automatic": [], "snapshot": {"current": {"id": 295859215, "region": "ap-west",
+ body: '{"automatic": [], "snapshot": {"current": {"id": 298852965, "region": "ap-west",
"type": "snapshot", "status": "successful", "available": true, "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "finished": "2018-01-02T03:04:05", "label":
- "snapshot-linodego-testing", "configs": ["go-test-conf-4bjm21q2t8r0"], "disks":
+ "snapshot-linodego-testing", "configs": ["go-test-conf-3ky473f0f2sb"], "disks":
[{"label": "linodego-disk-test", "size": 10, "filesystem": "ext4"}]}, "in_progress":
null}}'
headers:
@@ -2340,6 +2380,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -2351,7 +2393,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:54:20 GMT
+ - Thu, 25 Jul 2024 18:49:06 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2367,7 +2409,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -2385,13 +2430,13 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60779324/backups/295859215
+ url: https://api.linode.com/v4beta/linode/instances/61876053/backups/298852965
method: GET
response:
- body: '{"id": 295859215, "region": "ap-west", "type": "snapshot", "status": "successful",
+ body: '{"id": 298852965, "region": "ap-west", "type": "snapshot", "status": "successful",
"available": true, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
"finished": "2018-01-02T03:04:05", "label": "snapshot-linodego-testing", "configs":
- ["go-test-conf-4bjm21q2t8r0"], "disks": [{"label": "linodego-disk-test", "size":
+ ["go-test-conf-3ky473f0f2sb"], "disks": [{"label": "linodego-disk-test", "size":
10, "filesystem": "ext4"}]}'
headers:
Access-Control-Allow-Credentials:
@@ -2404,6 +2449,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -2415,7 +2462,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:54:35 GMT
+ - Thu, 25 Jul 2024 18:49:21 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2431,7 +2478,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -2440,7 +2490,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"linode_id":60779324,"overwrite":true}'
+ body: '{"linode_id":61876053,"overwrite":true}'
form: {}
headers:
Accept:
@@ -2449,7 +2499,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60779324/backups/295859215/restore
+ url: https://api.linode.com/v4beta/linode/instances/61876053/backups/298852965/restore
method: POST
response:
body: '{}'
@@ -2464,6 +2514,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -2475,7 +2527,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:54:35 GMT
+ - Thu, 25 Jul 2024 18:49:21 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2490,7 +2542,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -2508,7 +2563,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60779324/backups/cancel
+ url: https://api.linode.com/v4beta/linode/instances/61876053/backups/cancel
method: POST
response:
body: '{}'
@@ -2523,6 +2578,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -2534,7 +2591,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:54:36 GMT
+ - Thu, 25 Jul 2024 18:49:21 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2549,7 +2606,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -2568,15 +2628,15 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"backups_restore","created":{"+gte":"2024-06-28T18:54:35"},"entity.id":60779324,"entity.type":"linode"}'
+ - '{"+order":"desc","+order_by":"created","action":"backups_restore","created":{"+gte":"2024-07-25T18:49:21"},"entity.id":61876053,"entity.type":"linode"}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 759973144, "created": "2018-01-02T03:04:05", "seen": false,
+ body: '{"data": [{"id": 788271850, "created": "2018-01-02T03:04:05", "seen": false,
"read": false, "percent_complete": 50, "time_remaining": null, "rate": null,
- "duration": 15.246632, "action": "backups_restore", "username": "ErikZilber",
- "entity": {"label": "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type":
- "linode", "url": "/v4/linode/instances/60779324"}, "status": "started", "secondary_entity":
+ "duration": 15.93724, "action": "backups_restore", "username": "ychen123", "entity":
+ {"label": "go-test-ins-wo-disk-14x573eovrw1", "id": 61876053, "type": "linode",
+ "url": "/v4/linode/instances/61876053"}, "status": "started", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -2589,18 +2649,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "463"
+ - "460"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:54:51 GMT
+ - Thu, 25 Jul 2024 18:49:37 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2616,7 +2678,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -2635,15 +2700,15 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"backups_restore","created":{"+gte":"2024-06-28T18:54:35"},"entity.id":60779324,"entity.type":"linode","id":{"+gte":759973144}}'
+ - '{"+order":"desc","+order_by":"created","action":"backups_restore","created":{"+gte":"2024-07-25T18:49:21"},"entity.id":61876053,"entity.type":"linode","id":{"+gte":788271850}}'
url: https://api.linode.com/v4beta/account/events?page=1
method: GET
response:
- body: '{"data": [{"id": 759973144, "created": "2018-01-02T03:04:05", "seen": false,
- "read": false, "percent_complete": 100, "time_remaining": 0, "rate": null, "duration":
- 17.0, "action": "backups_restore", "username": "ErikZilber", "entity": {"label":
- "go-test-ins-wo-disk-63gqb1484bax", "id": 60779324, "type": "linode", "url":
- "/v4/linode/instances/60779324"}, "status": "finished", "secondary_entity":
+ body: '{"data": [{"id": 788271850, "created": "2018-01-02T03:04:05", "seen": false,
+ "read": false, "percent_complete": 100, "time_remaining": null, "rate": null,
+ "duration": 24.0, "action": "backups_restore", "username": "ychen123", "entity":
+ {"label": "go-test-ins-wo-disk-14x573eovrw1", "id": 61876053, "type": "linode",
+ "url": "/v4/linode/instances/61876053"}, "status": "finished", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -2656,18 +2721,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "457"
+ - "458"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:55:06 GMT
+ - Thu, 25 Jul 2024 18:49:51 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2683,7 +2750,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -2701,7 +2771,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60779324
+ url: https://api.linode.com/v4beta/linode/instances/61876053
method: DELETE
response:
body: '{}'
@@ -2716,6 +2786,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -2727,7 +2799,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 18:55:06 GMT
+ - Thu, 25 Jul 2024 18:49:52 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2742,7 +2814,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestInstanceFirewalls_List.yaml b/test/integration/fixtures/TestInstanceFirewalls_List.yaml
index 602d5333d..ee2919eec 100644
--- a/test/integration/fixtures/TestInstanceFirewalls_List.yaml
+++ b/test/integration/fixtures/TestInstanceFirewalls_List.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
- "Managed Databases", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
"1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,95 +166,142 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "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,
+ Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
+ 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
+ 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
+ "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
+ 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
+ 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -263,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -272,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:23:56 GMT
+ - Thu, 25 Jul 2024 17:46:34 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -289,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -298,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"linodego-fw-inst-test","root_pass":"9loj(I5p4AzdZ{G*i\u003c)7o\u0026F01iY|?e#Bg.87:NVl22f5`dp3IFMq!AJ49$''7B~X6","image":"linode/debian9","booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"linodego-fw-inst-test","root_pass":"+r\u003eiWx30A84Eq9,24dMPW/@?.\u0026|ssQo3UXVd)XVZ2zb@Aw6/62000m\u003c}fTq0+T@b","image":"linode/debian9","booted":false}'
form: {}
headers:
Accept:
@@ -310,16 +365,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 60715330, "label": "linodego-fw-inst-test", "group": "", "status":
+ body: '{"id": 61874263, "label": "linodego-fw-inst-test", "group": "", "status":
"provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["192.46.211.8"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "6deb340409e2d5f7dd7dd793782f76f32d8be22d", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["139.144.1.9"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
+ null, "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled":
+ true, "tags": [], "host_uuid": "c37a9389a8780ce12d745d3f703cbee667a6278e", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -331,18 +386,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "788"
+ - "805"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:23:57 GMT
+ - Thu, 25 Jul 2024 17:46:34 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -357,7 +414,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -366,7 +426,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"linodego-fw-ins-test","rules":{"inbound":[{"action":"ACCEPT","label":"go-fwrule-test","ports":"22","protocol":"TCP","addresses":{"ipv4":["0.0.0.0/0"],"ipv6":["1234::5678/0"]}}],"inbound_policy":"ACCEPT","outbound":[{"action":"ACCEPT","label":"go-fwrule-test","ports":"22","protocol":"TCP","addresses":{"ipv4":["0.0.0.0/0"],"ipv6":["1234::5678/0"]}}],"outbound_policy":"ACCEPT"},"tags":["testing"],"devices":{"linodes":[59544187]}}'
+ body: '{"label":"linodego-fw-ins-test","rules":{"inbound":[{"action":"ACCEPT","label":"go-fwrule-test","ports":"22","protocol":"TCP","addresses":{"ipv4":["0.0.0.0/0"],"ipv6":["1234::5678/0"]}}],"inbound_policy":"ACCEPT","outbound":[{"action":"ACCEPT","label":"go-fwrule-test","ports":"22","protocol":"TCP","addresses":{"ipv4":["0.0.0.0/0"],"ipv6":["1234::5678/0"]}}],"outbound_policy":"ACCEPT"},"tags":["testing"],"devices":{"linodes":[61874263]}}'
form: {}
headers:
Accept:
@@ -378,15 +438,15 @@ interactions:
url: https://api.linode.com/v4beta/networking/firewalls
method: POST
response:
- body: '{"id": 605250, "label": "linodego-fw-ins-test", "created": "2018-01-02T03:04:05",
+ body: '{"id": 692878, "label": "linodego-fw-ins-test", "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "status": "enabled", "rules": {"inbound":
[{"action": "ACCEPT", "label": "go-fwrule-test", "ports": "22", "protocol":
"TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["1234::5678/0"]}}], "inbound_policy":
"ACCEPT", "outbound": [{"action": "ACCEPT", "label": "go-fwrule-test", "ports":
"22", "protocol": "TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["1234::5678/0"]}}],
"outbound_policy": "ACCEPT", "version": 1, "fingerprint": "7bcc0f03"}, "tags":
- ["testing"], "entities": [{"id": 60715330, "type": "linode", "label": "linodego-fw-inst-test",
- "url": "/v4/linode/instances/60715330"}]}'
+ ["testing"], "entities": [{"id": 61874263, "type": "linode", "label": "linodego-fw-inst-test",
+ "url": "/v4/linode/instances/61874263"}]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -398,6 +458,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -409,7 +471,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:23:57 GMT
+ - Thu, 25 Jul 2024 17:46:35 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -424,7 +486,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -442,18 +507,18 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60715330/firewalls?page=1
+ url: https://api.linode.com/v4beta/linode/instances/61874263/firewalls?page=1
method: GET
response:
- body: '{"data": [{"id": 605250, "label": "linodego-fw-ins-test", "created": "2018-01-02T03:04:05",
+ body: '{"data": [{"id": 692878, "label": "linodego-fw-ins-test", "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05", "status": "enabled", "rules": {"inbound":
[{"action": "ACCEPT", "label": "go-fwrule-test", "ports": "22", "protocol":
"TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["1234::5678/0"]}}], "inbound_policy":
"ACCEPT", "outbound": [{"action": "ACCEPT", "label": "go-fwrule-test", "ports":
"22", "protocol": "TCP", "addresses": {"ipv4": ["0.0.0.0/0"], "ipv6": ["1234::5678/0"]}}],
"outbound_policy": "ACCEPT", "version": 1, "fingerprint": "7bcc0f03"}, "tags":
- ["testing"], "entities": [{"id": 60715330, "type": "linode", "label": "linodego-fw-inst-test",
- "url": "/v4/linode/instances/60715330"}]}], "page": 1, "pages": 1, "results":
+ ["testing"], "entities": [{"id": 61874263, "type": "linode", "label": "linodego-fw-inst-test",
+ "url": "/v4/linode/instances/61874263"}]}], "page": 1, "pages": 1, "results":
1}'
headers:
Access-Control-Allow-Credentials:
@@ -466,6 +531,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -477,7 +544,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:23:57 GMT
+ - Thu, 25 Jul 2024 17:46:35 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -493,7 +560,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -511,7 +581,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/networking/firewalls/605250
+ url: https://api.linode.com/v4beta/networking/firewalls/692878
method: DELETE
response:
body: '{}'
@@ -526,6 +596,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -537,7 +609,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:23:57 GMT
+ - Thu, 25 Jul 2024 17:46:35 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -552,7 +624,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -570,7 +645,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60715330
+ url: https://api.linode.com/v4beta/linode/instances/61874263
method: DELETE
response:
body: '{}'
@@ -585,6 +660,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -596,7 +673,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:23:58 GMT
+ - Thu, 25 Jul 2024 17:46:35 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -611,7 +688,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestInstance_ConfigInterface_Update.yaml b/test/integration/fixtures/TestInstance_ConfigInterface_Update.yaml
index 7add2feae..c6eb95411 100644
--- a/test/integration/fixtures/TestInstance_ConfigInterface_Update.yaml
+++ b/test/integration/fixtures/TestInstance_ConfigInterface_Update.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
- "Managed Databases", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
"1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,95 +166,142 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "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,
+ Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
+ 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
+ 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
+ "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
+ 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
+ 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -263,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -272,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:43 GMT
+ - Thu, 25 Jul 2024 17:46:25 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -289,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -298,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"us-iad","type":"g6-nanode-1","label":"go-test-ins-wo-disk-j74e4kdk1w91","firewall_id":605230,"booted":false}'
+ body: '{"region":"us-iad","type":"g6-nanode-1","label":"go-test-ins-wo-disk-p1hen110q4t6","firewall_id":692854,"booted":false}'
form: {}
headers:
Accept:
@@ -310,16 +365,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 60714784, "label": "go-test-ins-wo-disk-j74e4kdk1w91", "group":
+ body: '{"id": 61874252, "label": "go-test-ins-wo-disk-p1hen110q4t6", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.233.207.234"], "ipv6": "1234::5678/128",
- "image": null, "region": "us-iad", "specs": {"disk": 25600, "memory": 1024,
- "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "c00102518f534d7527027944805c3afa4da4b35d", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["172.234.130.65"], "ipv6": "1234::5678/128",
+ "image": null, "region": "us-iad", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu":
+ 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io": 10000},
+ "backups": {"enabled": true, "available": false, "schedule": {"day": null, "window":
+ null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true,
+ "tags": [], "host_uuid": "81a6689e2a5932cbf36d6571b2b808a00bb59c64", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -331,18 +386,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "785"
+ - "806"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:44 GMT
+ - Thu, 25 Jul 2024 17:46:26 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -357,7 +414,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -366,7 +426,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-y184996plfqi","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-d7458nn67loj","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -375,11 +435,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714784/configs
+ url: https://api.linode.com/v4beta/linode/instances/61874252/configs
method: POST
response:
- body: '{"id": 63921826, "label": "go-test-conf-y184996plfqi", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ body: '{"id": 65094714, "label": "go-test-conf-d7458nn67loj", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
@@ -396,18 +456,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "539"
+ - "540"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:44 GMT
+ - Thu, 25 Jul 2024 17:46:26 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -422,7 +484,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -431,7 +496,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-vpc-1719493904500391000","region":"us-iad","subnets":[{"label":"linodego-vpc-test-1719493904500557000","ipv4":"192.168.0.0/25"}]}'
+ body: '{"label":"go-test-vpc-1721929586780390000","region":"us-iad","subnets":[{"label":"linodego-vpc-test-1721929586780566000","ipv4":"192.168.0.0/25"}]}'
form: {}
headers:
Accept:
@@ -443,8 +508,8 @@ interactions:
url: https://api.linode.com/v4beta/vpcs
method: POST
response:
- body: '{"id": 70779, "label": "go-test-vpc-1719493904500391000", "description":
- "", "region": "us-iad", "subnets": [{"id": 68950, "label": "linodego-vpc-test-1719493904500557000",
+ body: '{"id": 78828, "label": "go-test-vpc-1721929586780390000", "description":
+ "", "region": "us-iad", "subnets": [{"id": 76447, "label": "linodego-vpc-test-1721929586780566000",
"ipv4": "192.168.0.0/25", "ipv6": null, "linodes": [], "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05"}], "created": "2018-01-02T03:04:05", "updated":
"2018-01-02T03:04:05"}'
@@ -459,6 +524,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -470,7 +537,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:44 GMT
+ - Thu, 25 Jul 2024 17:46:27 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -485,7 +552,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -494,7 +564,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"purpose":"vpc","subnet_id":68950,"ip_ranges":["192.168.0.5/32"]}'
+ body: '{"purpose":"vpc","subnet_id":76447,"ip_ranges":["192.168.0.5/32"]}'
form: {}
headers:
Accept:
@@ -503,11 +573,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714784/configs/63921826/interfaces
+ url: https://api.linode.com/v4beta/linode/instances/61874252/configs/65094714/interfaces
method: POST
response:
- body: '{"id": 1832261, "purpose": "vpc", "primary": false, "active": false, "ipam_address":
- null, "label": null, "vpc_id": 70779, "subnet_id": 68950, "ipv4": {"vpc": "192.168.0.2",
+ body: '{"id": 2047760, "purpose": "vpc", "primary": false, "active": false, "ipam_address":
+ null, "label": null, "vpc_id": 78828, "subnet_id": 76447, "ipv4": {"vpc": "192.168.0.2",
"nat_1_1": null}, "ipv6": null, "ip_ranges": ["192.168.0.5/32"]}'
headers:
Access-Control-Allow-Credentials:
@@ -520,6 +590,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -531,7 +603,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:44 GMT
+ - Thu, 25 Jul 2024 17:46:27 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -546,7 +618,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -564,11 +639,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714784/configs/63921826/interfaces/1832261
+ url: https://api.linode.com/v4beta/linode/instances/61874252/configs/65094714/interfaces/2047760
method: PUT
response:
- body: '{"id": 1832261, "purpose": "vpc", "primary": true, "active": false, "ipam_address":
- null, "label": null, "vpc_id": 70779, "subnet_id": 68950, "ipv4": {"vpc": "192.168.0.2",
+ body: '{"id": 2047760, "purpose": "vpc", "primary": true, "active": false, "ipam_address":
+ null, "label": null, "vpc_id": 78828, "subnet_id": 76447, "ipv4": {"vpc": "192.168.0.2",
"nat_1_1": null}, "ipv6": null, "ip_ranges": ["192.168.0.5/32"]}'
headers:
Access-Control-Allow-Credentials:
@@ -581,6 +656,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -592,7 +669,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:45 GMT
+ - Thu, 25 Jul 2024 17:46:27 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -607,7 +684,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -625,12 +705,12 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714784/configs/63921826/interfaces/1832261
+ url: https://api.linode.com/v4beta/linode/instances/61874252/configs/65094714/interfaces/2047760
method: PUT
response:
- body: '{"id": 1832261, "purpose": "vpc", "primary": true, "active": false, "ipam_address":
- null, "label": null, "vpc_id": 70779, "subnet_id": 68950, "ipv4": {"vpc": "192.168.0.10",
- "nat_1_1": "172.234.140.77"}, "ipv6": null, "ip_ranges": []}'
+ body: '{"id": 2047760, "purpose": "vpc", "primary": true, "active": false, "ipam_address":
+ null, "label": null, "vpc_id": 78828, "subnet_id": 76447, "ipv4": {"vpc": "192.168.0.10",
+ "nat_1_1": "172.234.130.65"}, "ipv6": null, "ip_ranges": []}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -642,6 +722,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -653,7 +735,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:45 GMT
+ - Thu, 25 Jul 2024 17:46:27 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -668,7 +750,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -686,7 +771,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714784
+ url: https://api.linode.com/v4beta/linode/instances/61874252
method: DELETE
response:
body: '{}'
@@ -701,6 +786,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -712,7 +799,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:45 GMT
+ - Thu, 25 Jul 2024 17:46:27 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -727,7 +814,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -745,7 +835,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/vpcs/70779
+ url: https://api.linode.com/v4beta/vpcs/78828
method: DELETE
response:
body: '{}'
@@ -760,6 +850,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -771,7 +863,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:45 GMT
+ - Thu, 25 Jul 2024 17:46:28 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -786,7 +878,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestInstance_ConfigInterfaces_AppendDelete.yaml b/test/integration/fixtures/TestInstance_ConfigInterfaces_AppendDelete.yaml
index aeae54676..cd2513ec3 100644
--- a/test/integration/fixtures/TestInstance_ConfigInterfaces_AppendDelete.yaml
+++ b/test/integration/fixtures/TestInstance_ConfigInterfaces_AppendDelete.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
- "Managed Databases", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
"1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,95 +166,142 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "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,
+ Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
+ 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
+ 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
+ "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
+ 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
+ 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -263,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -272,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:34 GMT
+ - Thu, 25 Jul 2024 17:46:15 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -289,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -298,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"us-iad","type":"g6-nanode-1","label":"go-test-ins-wo-disk-026vw02hfz9t","firewall_id":605230,"booted":false}'
+ body: '{"region":"us-iad","type":"g6-nanode-1","label":"go-test-ins-wo-disk-2iwaz363s2e9","firewall_id":692854,"booted":false}'
form: {}
headers:
Accept:
@@ -310,16 +365,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 60714774, "label": "go-test-ins-wo-disk-026vw02hfz9t", "group":
+ body: '{"id": 61874244, "label": "go-test-ins-wo-disk-2iwaz363s2e9", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.234.42.28"], "ipv6": "1234::5678/128",
- "image": null, "region": "us-iad", "specs": {"disk": 25600, "memory": 1024,
- "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "c00102518f534d7527027944805c3afa4da4b35d", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["172.234.34.216"], "ipv6": "1234::5678/128",
+ "image": null, "region": "us-iad", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu":
+ 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io": 10000},
+ "backups": {"enabled": true, "available": false, "schedule": {"day": null, "window":
+ null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true,
+ "tags": [], "host_uuid": "81a6689e2a5932cbf36d6571b2b808a00bb59c64", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -331,18 +386,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "786"
+ - "806"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:35 GMT
+ - Thu, 25 Jul 2024 17:46:16 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -357,7 +414,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -366,7 +426,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-6u1ky825wn5z","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-6i73l4y0tac7","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -375,11 +435,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714774/configs
+ url: https://api.linode.com/v4beta/linode/instances/61874244/configs
method: POST
response:
- body: '{"id": 63921816, "label": "go-test-conf-6u1ky825wn5z", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ body: '{"id": 65094703, "label": "go-test-conf-6i73l4y0tac7", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
@@ -396,18 +456,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "539"
+ - "540"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:35 GMT
+ - Thu, 25 Jul 2024 17:46:16 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -422,7 +484,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -431,7 +496,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-vpc-1719493895346045000","region":"us-iad","subnets":[{"label":"linodego-vpc-test-1719493895346119000","ipv4":"192.168.0.0/25"}]}'
+ body: '{"label":"go-test-vpc-1721929576244854000","region":"us-iad","subnets":[{"label":"linodego-vpc-test-1721929576245077000","ipv4":"192.168.0.0/25"}]}'
form: {}
headers:
Accept:
@@ -443,8 +508,8 @@ interactions:
url: https://api.linode.com/v4beta/vpcs
method: POST
response:
- body: '{"id": 70775, "label": "go-test-vpc-1719493895346045000", "description":
- "", "region": "us-iad", "subnets": [{"id": 68946, "label": "linodego-vpc-test-1719493895346119000",
+ body: '{"id": 78824, "label": "go-test-vpc-1721929576244854000", "description":
+ "", "region": "us-iad", "subnets": [{"id": 76443, "label": "linodego-vpc-test-1721929576245077000",
"ipv4": "192.168.0.0/25", "ipv6": null, "linodes": [], "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05"}], "created": "2018-01-02T03:04:05", "updated":
"2018-01-02T03:04:05"}'
@@ -459,6 +524,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -470,7 +537,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:35 GMT
+ - Thu, 25 Jul 2024 17:46:16 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -485,7 +552,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -494,7 +564,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"purpose":"vpc","subnet_id":68946}'
+ body: '{"purpose":"vpc","subnet_id":76443}'
form: {}
headers:
Accept:
@@ -503,11 +573,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714774/configs/63921816/interfaces
+ url: https://api.linode.com/v4beta/linode/instances/61874244/configs/65094703/interfaces
method: POST
response:
- body: '{"id": 1832251, "purpose": "vpc", "primary": false, "active": false, "ipam_address":
- null, "label": null, "vpc_id": 70775, "subnet_id": 68946, "ipv4": {"vpc": "192.168.0.2",
+ body: '{"id": 2047747, "purpose": "vpc", "primary": false, "active": false, "ipam_address":
+ null, "label": null, "vpc_id": 78824, "subnet_id": 76443, "ipv4": {"vpc": "192.168.0.2",
"nat_1_1": null}, "ipv6": null, "ip_ranges": []}'
headers:
Access-Control-Allow-Credentials:
@@ -520,6 +590,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -531,7 +603,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:35 GMT
+ - Thu, 25 Jul 2024 17:46:16 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -546,7 +618,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -564,11 +639,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714774/configs/63921816/interfaces
+ url: https://api.linode.com/v4beta/linode/instances/61874244/configs/65094703/interfaces
method: GET
response:
- body: '[{"id": 1832251, "purpose": "vpc", "primary": false, "active": false, "ipam_address":
- null, "label": null, "vpc_id": 70775, "subnet_id": 68946, "ipv4": {"vpc": "192.168.0.2",
+ body: '[{"id": 2047747, "purpose": "vpc", "primary": false, "active": false, "ipam_address":
+ null, "label": null, "vpc_id": 78824, "subnet_id": 76443, "ipv4": {"vpc": "192.168.0.2",
"nat_1_1": null}, "ipv6": null, "ip_ranges": []}]'
headers:
Access-Control-Allow-Credentials:
@@ -581,6 +656,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -592,7 +669,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:35 GMT
+ - Thu, 25 Jul 2024 17:46:16 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -608,7 +685,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -626,7 +706,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714774/configs/63921816/interfaces/1832251
+ url: https://api.linode.com/v4beta/linode/instances/61874244/configs/65094703/interfaces/2047747
method: DELETE
response:
body: '{}'
@@ -641,6 +721,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -652,7 +734,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:36 GMT
+ - Thu, 25 Jul 2024 17:46:17 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -667,7 +749,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -685,7 +770,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714774/configs/63921816/interfaces
+ url: https://api.linode.com/v4beta/linode/instances/61874244/configs/65094703/interfaces
method: GET
response:
body: '[]'
@@ -700,6 +785,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -711,7 +798,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:36 GMT
+ - Thu, 25 Jul 2024 17:46:17 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -727,7 +814,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -745,7 +835,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714774
+ url: https://api.linode.com/v4beta/linode/instances/61874244
method: DELETE
response:
body: '{}'
@@ -760,6 +850,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -771,7 +863,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:36 GMT
+ - Thu, 25 Jul 2024 17:46:17 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -786,7 +878,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -804,7 +899,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/vpcs/70775
+ url: https://api.linode.com/v4beta/vpcs/78824
method: DELETE
response:
body: '{}'
@@ -819,6 +914,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -830,7 +927,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:36 GMT
+ - Thu, 25 Jul 2024 17:46:17 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -845,7 +942,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestInstance_ConfigInterfaces_List.yaml b/test/integration/fixtures/TestInstance_ConfigInterfaces_List.yaml
index fbb48ab0e..16a926612 100644
--- a/test/integration/fixtures/TestInstance_ConfigInterfaces_List.yaml
+++ b/test/integration/fixtures/TestInstance_ConfigInterfaces_List.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
- "Managed Databases", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
"1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,95 +166,142 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "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,
+ Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
+ 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
+ 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
+ "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
+ 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
+ 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -263,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -272,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:39 GMT
+ - Thu, 25 Jul 2024 17:46:20 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -289,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -298,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"us-iad","type":"g6-nanode-1","label":"go-test-ins-wo-disk-n9w2u4t20j5z","firewall_id":605230,"booted":false}'
+ body: '{"region":"us-iad","type":"g6-nanode-1","label":"go-test-ins-wo-disk-jv53v34je07p","firewall_id":692854,"booted":false}'
form: {}
headers:
Accept:
@@ -310,16 +365,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 60714776, "label": "go-test-ins-wo-disk-n9w2u4t20j5z", "group":
+ body: '{"id": 61874250, "label": "go-test-ins-wo-disk-jv53v34je07p", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.233.194.167"], "ipv6": "1234::5678/128",
- "image": null, "region": "us-iad", "specs": {"disk": 25600, "memory": 1024,
- "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "c00102518f534d7527027944805c3afa4da4b35d", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["172.234.34.222"], "ipv6": "1234::5678/128",
+ "image": null, "region": "us-iad", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu":
+ 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io": 10000},
+ "backups": {"enabled": true, "available": false, "schedule": {"day": null, "window":
+ null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true,
+ "tags": [], "host_uuid": "81a6689e2a5932cbf36d6571b2b808a00bb59c64", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -331,18 +386,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "786"
+ - "806"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:39 GMT
+ - Thu, 25 Jul 2024 17:46:21 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -357,7 +414,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -366,7 +426,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-l155yv79n3hh","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-i26n6k4q0t7d","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -375,11 +435,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714776/configs
+ url: https://api.linode.com/v4beta/linode/instances/61874250/configs
method: POST
response:
- body: '{"id": 63921818, "label": "go-test-conf-l155yv79n3hh", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ body: '{"id": 65094710, "label": "go-test-conf-i26n6k4q0t7d", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
@@ -396,18 +456,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "539"
+ - "540"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:40 GMT
+ - Thu, 25 Jul 2024 17:46:21 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -422,7 +484,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -431,7 +496,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-vpc-1719493900044650000","region":"us-iad","subnets":[{"label":"linodego-vpc-test-1719493900044810000","ipv4":"192.168.0.0/25"}]}'
+ body: '{"label":"go-test-vpc-1721929581946357000","region":"us-iad","subnets":[{"label":"linodego-vpc-test-1721929581946537000","ipv4":"192.168.0.0/25"}]}'
form: {}
headers:
Accept:
@@ -443,8 +508,8 @@ interactions:
url: https://api.linode.com/v4beta/vpcs
method: POST
response:
- body: '{"id": 70777, "label": "go-test-vpc-1719493900044650000", "description":
- "", "region": "us-iad", "subnets": [{"id": 68948, "label": "linodego-vpc-test-1719493900044810000",
+ body: '{"id": 78826, "label": "go-test-vpc-1721929581946357000", "description":
+ "", "region": "us-iad", "subnets": [{"id": 76445, "label": "linodego-vpc-test-1721929581946537000",
"ipv4": "192.168.0.0/25", "ipv6": null, "linodes": [], "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05"}], "created": "2018-01-02T03:04:05", "updated":
"2018-01-02T03:04:05"}'
@@ -459,6 +524,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -470,7 +537,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:40 GMT
+ - Thu, 25 Jul 2024 17:46:22 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -485,7 +552,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -494,7 +564,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-l155yv79n3hh","comments":"","devices":{},"helpers":{"updatedb_disabled":true,"distro":true,"modules_dep":true,"network":true,"devtmpfs_automount":true},"interfaces":[{"purpose":"public"},{"label":"testvlan","purpose":"vlan"},{"purpose":"vpc","subnet_id":68948,"ipv4":{"nat_1_1":"any"}}],"memory_limit":0,"kernel":"linode/latest-64bit","init_rd":null,"root_device":"/dev/sda","run_level":"default","virt_mode":"paravirt"}'
+ body: '{"label":"go-test-conf-i26n6k4q0t7d","comments":"","devices":{},"helpers":{"updatedb_disabled":true,"distro":true,"modules_dep":true,"network":false,"devtmpfs_automount":true},"interfaces":[{"purpose":"public"},{"label":"testvlan","purpose":"vlan"},{"purpose":"vpc","subnet_id":76445,"ipv4":{"nat_1_1":"any"}}],"memory_limit":0,"kernel":"linode/latest-64bit","init_rd":null,"root_device":"/dev/sda","run_level":"default","virt_mode":"paravirt"}'
form: {}
headers:
Accept:
@@ -503,23 +573,23 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714776/configs/63921818
+ url: https://api.linode.com/v4beta/linode/instances/61874250/configs/65094710
method: PUT
response:
- body: '{"id": 63921818, "label": "go-test-conf-l155yv79n3hh", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ body: '{"id": 65094710, "label": "go-test-conf-i26n6k4q0t7d", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
"sdf": null, "sdg": null, "sdh": null}, "initrd": null, "run_level": "default",
- "virt_mode": "paravirt", "interfaces": [{"id": 1832255, "purpose": "public",
+ "virt_mode": "paravirt", "interfaces": [{"id": 2047754, "purpose": "public",
"primary": false, "active": false, "ipam_address": null, "label": null, "vpc_id":
null, "subnet_id": null, "ipv4": null, "ipv6": null, "ip_ranges": null}, {"id":
- 1832256, "purpose": "vlan", "primary": false, "active": false, "ipam_address":
+ 2047755, "purpose": "vlan", "primary": false, "active": false, "ipam_address":
"", "label": "testvlan", "vpc_id": null, "subnet_id": null, "ipv4": null, "ipv6":
- null, "ip_ranges": null}, {"id": 1832257, "purpose": "vpc", "primary": false,
- "active": false, "ipam_address": null, "label": null, "vpc_id": 70777, "subnet_id":
- 68948, "ipv4": {"vpc": "192.168.0.2", "nat_1_1": "172.234.128.105"}, "ipv6":
+ null, "ip_ranges": null}, {"id": 2047756, "purpose": "vpc", "primary": false,
+ "active": false, "ipam_address": null, "label": null, "vpc_id": 78826, "subnet_id":
+ 76445, "ipv4": {"vpc": "192.168.0.2", "nat_1_1": "172.234.34.222"}, "ipv6":
null, "ip_ranges": []}]}'
headers:
Access-Control-Allow-Credentials:
@@ -532,6 +602,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -541,7 +613,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:40 GMT
+ - Thu, 25 Jul 2024 17:46:22 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -557,7 +629,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -575,17 +650,17 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714776/configs/63921818/interfaces
+ url: https://api.linode.com/v4beta/linode/instances/61874250/configs/65094710/interfaces
method: GET
response:
- body: '[{"id": 1832255, "purpose": "public", "primary": false, "active": false,
+ body: '[{"id": 2047754, "purpose": "public", "primary": false, "active": false,
"ipam_address": null, "label": null, "vpc_id": null, "subnet_id": null, "ipv4":
- null, "ipv6": null, "ip_ranges": null}, {"id": 1832256, "purpose": "vlan", "primary":
+ null, "ipv6": null, "ip_ranges": null}, {"id": 2047755, "purpose": "vlan", "primary":
false, "active": false, "ipam_address": "", "label": "testvlan", "vpc_id": null,
- "subnet_id": null, "ipv4": null, "ipv6": null, "ip_ranges": null}, {"id": 1832257,
+ "subnet_id": null, "ipv4": null, "ipv6": null, "ip_ranges": null}, {"id": 2047756,
"purpose": "vpc", "primary": false, "active": false, "ipam_address": null, "label":
- null, "vpc_id": 70777, "subnet_id": 68948, "ipv4": {"vpc": "192.168.0.2", "nat_1_1":
- "172.234.128.105"}, "ipv6": null, "ip_ranges": []}]'
+ null, "vpc_id": 78826, "subnet_id": 76445, "ipv4": {"vpc": "192.168.0.2", "nat_1_1":
+ "172.234.34.222"}, "ipv6": null, "ip_ranges": []}]'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -597,18 +672,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "623"
+ - "622"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:40 GMT
+ - Thu, 25 Jul 2024 17:46:22 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -624,7 +701,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -642,7 +722,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714776
+ url: https://api.linode.com/v4beta/linode/instances/61874250
method: DELETE
response:
body: '{}'
@@ -657,6 +737,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -668,7 +750,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:40 GMT
+ - Thu, 25 Jul 2024 17:46:22 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -683,7 +765,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -701,7 +786,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/vpcs/70777
+ url: https://api.linode.com/v4beta/vpcs/78826
method: DELETE
response:
body: '{}'
@@ -716,6 +801,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -727,7 +814,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:41 GMT
+ - Thu, 25 Jul 2024 17:46:23 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -742,7 +829,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestInstance_ConfigInterfaces_Reorder.yaml b/test/integration/fixtures/TestInstance_ConfigInterfaces_Reorder.yaml
index b99c6c940..25d1fbb4d 100644
--- a/test/integration/fixtures/TestInstance_ConfigInterfaces_Reorder.yaml
+++ b/test/integration/fixtures/TestInstance_ConfigInterfaces_Reorder.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
- "Managed Databases", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
"1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,95 +166,142 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "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,
+ Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
+ 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
+ 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
+ "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
+ 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
+ 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -263,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -272,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:36 GMT
+ - Thu, 25 Jul 2024 17:46:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -289,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -298,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"us-iad","type":"g6-nanode-1","label":"go-test-ins-wo-disk-a3gp79f61cf1","firewall_id":605230,"booted":false}'
+ body: '{"region":"us-iad","type":"g6-nanode-1","label":"go-test-ins-wo-disk-xg092lf7bs93","firewall_id":692854,"booted":false}'
form: {}
headers:
Accept:
@@ -310,16 +365,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 60714775, "label": "go-test-ins-wo-disk-a3gp79f61cf1", "group":
+ body: '{"id": 61874247, "label": "go-test-ins-wo-disk-xg092lf7bs93", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.233.194.115"], "ipv6": "1234::5678/128",
- "image": null, "region": "us-iad", "specs": {"disk": 25600, "memory": 1024,
- "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "c00102518f534d7527027944805c3afa4da4b35d", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["172.234.34.218"], "ipv6": "1234::5678/128",
+ "image": null, "region": "us-iad", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu":
+ 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io": 10000},
+ "backups": {"enabled": true, "available": false, "schedule": {"day": null, "window":
+ null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true,
+ "tags": [], "host_uuid": "81a6689e2a5932cbf36d6571b2b808a00bb59c64", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -331,18 +386,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "785"
+ - "806"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:37 GMT
+ - Thu, 25 Jul 2024 17:46:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -357,7 +414,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -366,7 +426,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-m6v6664jr8nb","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-8a59h6fj0a1g","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -375,11 +435,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714775/configs
+ url: https://api.linode.com/v4beta/linode/instances/61874247/configs
method: POST
response:
- body: '{"id": 63921817, "label": "go-test-conf-m6v6664jr8nb", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ body: '{"id": 65094707, "label": "go-test-conf-8a59h6fj0a1g", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
@@ -396,18 +456,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "539"
+ - "540"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:37 GMT
+ - Thu, 25 Jul 2024 17:46:19 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -422,7 +484,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -431,7 +496,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-vpc-1719493897851091000","region":"us-iad","subnets":[{"label":"linodego-vpc-test-1719493897851287000","ipv4":"192.168.0.0/25"}]}'
+ body: '{"label":"go-test-vpc-1721929579057586000","region":"us-iad","subnets":[{"label":"linodego-vpc-test-1721929579057744000","ipv4":"192.168.0.0/25"}]}'
form: {}
headers:
Accept:
@@ -443,8 +508,8 @@ interactions:
url: https://api.linode.com/v4beta/vpcs
method: POST
response:
- body: '{"id": 70776, "label": "go-test-vpc-1719493897851091000", "description":
- "", "region": "us-iad", "subnets": [{"id": 68947, "label": "linodego-vpc-test-1719493897851287000",
+ body: '{"id": 78825, "label": "go-test-vpc-1721929579057586000", "description":
+ "", "region": "us-iad", "subnets": [{"id": 76444, "label": "linodego-vpc-test-1721929579057744000",
"ipv4": "192.168.0.0/25", "ipv6": null, "linodes": [], "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05"}], "created": "2018-01-02T03:04:05", "updated":
"2018-01-02T03:04:05"}'
@@ -459,6 +524,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -470,7 +537,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:38 GMT
+ - Thu, 25 Jul 2024 17:46:19 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -485,7 +552,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -494,7 +564,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-m6v6664jr8nb","comments":"","devices":{},"helpers":{"updatedb_disabled":true,"distro":true,"modules_dep":true,"network":true,"devtmpfs_automount":true},"interfaces":[{"purpose":"public"},{"label":"testvlan","purpose":"vlan"},{"purpose":"vpc","subnet_id":68947,"ipv4":{"nat_1_1":"any"}}],"memory_limit":0,"kernel":"linode/latest-64bit","init_rd":null,"root_device":"/dev/sda","run_level":"default","virt_mode":"paravirt"}'
+ body: '{"label":"go-test-conf-8a59h6fj0a1g","comments":"","devices":{},"helpers":{"updatedb_disabled":true,"distro":true,"modules_dep":true,"network":false,"devtmpfs_automount":true},"interfaces":[{"purpose":"public"},{"label":"testvlan","purpose":"vlan"},{"purpose":"vpc","subnet_id":76444,"ipv4":{"nat_1_1":"any"}}],"memory_limit":0,"kernel":"linode/latest-64bit","init_rd":null,"root_device":"/dev/sda","run_level":"default","virt_mode":"paravirt"}'
form: {}
headers:
Accept:
@@ -503,23 +573,23 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714775/configs/63921817
+ url: https://api.linode.com/v4beta/linode/instances/61874247/configs/65094707
method: PUT
response:
- body: '{"id": 63921817, "label": "go-test-conf-m6v6664jr8nb", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ body: '{"id": 65094707, "label": "go-test-conf-8a59h6fj0a1g", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
"sdf": null, "sdg": null, "sdh": null}, "initrd": null, "run_level": "default",
- "virt_mode": "paravirt", "interfaces": [{"id": 1832252, "purpose": "public",
+ "virt_mode": "paravirt", "interfaces": [{"id": 2047750, "purpose": "public",
"primary": false, "active": false, "ipam_address": null, "label": null, "vpc_id":
null, "subnet_id": null, "ipv4": null, "ipv6": null, "ip_ranges": null}, {"id":
- 1832253, "purpose": "vlan", "primary": false, "active": false, "ipam_address":
+ 2047751, "purpose": "vlan", "primary": false, "active": false, "ipam_address":
"", "label": "testvlan", "vpc_id": null, "subnet_id": null, "ipv4": null, "ipv6":
- null, "ip_ranges": null}, {"id": 1832254, "purpose": "vpc", "primary": false,
- "active": false, "ipam_address": null, "label": null, "vpc_id": 70776, "subnet_id":
- 68947, "ipv4": {"vpc": "192.168.0.2", "nat_1_1": "172.234.128.54"}, "ipv6":
+ null, "ip_ranges": null}, {"id": 2047752, "purpose": "vpc", "primary": false,
+ "active": false, "ipam_address": null, "label": null, "vpc_id": 78825, "subnet_id":
+ 76444, "ipv4": {"vpc": "192.168.0.2", "nat_1_1": "172.234.34.218"}, "ipv6":
null, "ip_ranges": []}]}'
headers:
Access-Control-Allow-Credentials:
@@ -532,6 +602,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -541,7 +613,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:38 GMT
+ - Thu, 25 Jul 2024 17:46:19 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -557,7 +629,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -566,7 +641,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"ids":[1832253,1832252,1832254]}'
+ body: '{"ids":[2047751,2047750,2047752]}'
form: {}
headers:
Accept:
@@ -575,7 +650,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714775/configs/63921817/interfaces/order
+ url: https://api.linode.com/v4beta/linode/instances/61874247/configs/65094707/interfaces/order
method: POST
response:
body: '{}'
@@ -590,6 +665,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -601,7 +678,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:38 GMT
+ - Thu, 25 Jul 2024 17:46:19 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -616,7 +693,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -634,23 +714,23 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714775/configs/63921817
+ url: https://api.linode.com/v4beta/linode/instances/61874247/configs/65094707
method: GET
response:
- body: '{"id": 63921817, "label": "go-test-conf-m6v6664jr8nb", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ body: '{"id": 65094707, "label": "go-test-conf-8a59h6fj0a1g", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
"sdf": null, "sdg": null, "sdh": null}, "initrd": null, "run_level": "default",
- "virt_mode": "paravirt", "interfaces": [{"id": 1832253, "purpose": "vlan", "primary":
+ "virt_mode": "paravirt", "interfaces": [{"id": 2047751, "purpose": "vlan", "primary":
false, "active": false, "ipam_address": "", "label": "testvlan", "vpc_id": null,
- "subnet_id": null, "ipv4": null, "ipv6": null, "ip_ranges": null}, {"id": 1832252,
+ "subnet_id": null, "ipv4": null, "ipv6": null, "ip_ranges": null}, {"id": 2047750,
"purpose": "public", "primary": false, "active": false, "ipam_address": null,
"label": null, "vpc_id": null, "subnet_id": null, "ipv4": null, "ipv6": null,
- "ip_ranges": null}, {"id": 1832254, "purpose": "vpc", "primary": false, "active":
- false, "ipam_address": null, "label": null, "vpc_id": 70776, "subnet_id": 68947,
- "ipv4": {"vpc": "192.168.0.2", "nat_1_1": "172.234.128.54"}, "ipv6": null, "ip_ranges":
+ "ip_ranges": null}, {"id": 2047752, "purpose": "vpc", "primary": false, "active":
+ false, "ipam_address": null, "label": null, "vpc_id": 78825, "subnet_id": 76444,
+ "ipv4": {"vpc": "192.168.0.2", "nat_1_1": "172.234.34.218"}, "ipv6": null, "ip_ranges":
[]}]}'
headers:
Access-Control-Allow-Credentials:
@@ -663,6 +743,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -672,7 +754,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:38 GMT
+ - Thu, 25 Jul 2024 17:46:19 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -689,7 +771,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -707,7 +792,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714775
+ url: https://api.linode.com/v4beta/linode/instances/61874247
method: DELETE
response:
body: '{}'
@@ -722,6 +807,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -733,7 +820,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:38 GMT
+ - Thu, 25 Jul 2024 17:46:20 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -748,7 +835,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -766,7 +856,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/vpcs/70776
+ url: https://api.linode.com/v4beta/vpcs/78825
method: DELETE
response:
body: '{}'
@@ -781,6 +871,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -792,7 +884,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:39 GMT
+ - Thu, 25 Jul 2024 17:46:20 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -807,7 +899,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestInstance_ConfigInterfaces_Update.yaml b/test/integration/fixtures/TestInstance_ConfigInterfaces_Update.yaml
index 042d7cb6c..f90b8403e 100644
--- a/test/integration/fixtures/TestInstance_ConfigInterfaces_Update.yaml
+++ b/test/integration/fixtures/TestInstance_ConfigInterfaces_Update.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
- "Managed Databases", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
"1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,95 +166,142 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "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,
+ Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
+ 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
+ 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
+ "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
+ 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
+ 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -263,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -272,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:41 GMT
+ - Thu, 25 Jul 2024 17:46:23 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -289,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -298,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"us-iad","type":"g6-nanode-1","label":"go-test-ins-wo-disk-k9hc67s449wh","firewall_id":605230,"booted":false}'
+ body: '{"region":"us-iad","type":"g6-nanode-1","label":"go-test-ins-wo-disk-u3c971wn4l0r","firewall_id":692854,"booted":false}'
form: {}
headers:
Accept:
@@ -310,16 +365,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 60714781, "label": "go-test-ins-wo-disk-k9hc67s449wh", "group":
+ body: '{"id": 61874251, "label": "go-test-ins-wo-disk-u3c971wn4l0r", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.233.194.44"], "ipv6": "1234::5678/128",
- "image": null, "region": "us-iad", "specs": {"disk": 25600, "memory": 1024,
- "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "c00102518f534d7527027944805c3afa4da4b35d", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["139.144.207.229"], "ipv6": "1234::5678/128",
+ "image": null, "region": "us-iad", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu":
+ 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io": 10000},
+ "backups": {"enabled": true, "available": false, "schedule": {"day": null, "window":
+ null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true,
+ "tags": [], "host_uuid": "81a6689e2a5932cbf36d6571b2b808a00bb59c64", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -331,18 +386,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "785"
+ - "807"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:41 GMT
+ - Thu, 25 Jul 2024 17:46:24 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -357,7 +414,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -366,7 +426,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-40y4f5f2uhp2","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-nwp0gw7611b9","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -375,11 +435,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714781/configs
+ url: https://api.linode.com/v4beta/linode/instances/61874251/configs
method: POST
response:
- body: '{"id": 63921823, "label": "go-test-conf-40y4f5f2uhp2", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ body: '{"id": 65094712, "label": "go-test-conf-nwp0gw7611b9", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
@@ -396,18 +456,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "539"
+ - "540"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:41 GMT
+ - Thu, 25 Jul 2024 17:46:24 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -422,7 +484,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -431,7 +496,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-vpc-1719493901878148000","region":"us-iad","subnets":[{"label":"linodego-vpc-test-1719493901878323000","ipv4":"192.168.0.0/25"}]}'
+ body: '{"label":"go-test-vpc-1721929584474868000","region":"us-iad","subnets":[{"label":"linodego-vpc-test-1721929584475169000","ipv4":"192.168.0.0/25"}]}'
form: {}
headers:
Accept:
@@ -443,8 +508,8 @@ interactions:
url: https://api.linode.com/v4beta/vpcs
method: POST
response:
- body: '{"id": 70778, "label": "go-test-vpc-1719493901878148000", "description":
- "", "region": "us-iad", "subnets": [{"id": 68949, "label": "linodego-vpc-test-1719493901878323000",
+ body: '{"id": 78827, "label": "go-test-vpc-1721929584474868000", "description":
+ "", "region": "us-iad", "subnets": [{"id": 76446, "label": "linodego-vpc-test-1721929584475169000",
"ipv4": "192.168.0.0/25", "ipv6": null, "linodes": [], "created": "2018-01-02T03:04:05",
"updated": "2018-01-02T03:04:05"}], "created": "2018-01-02T03:04:05", "updated":
"2018-01-02T03:04:05"}'
@@ -459,6 +524,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -470,7 +537,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:42 GMT
+ - Thu, 25 Jul 2024 17:46:24 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -485,7 +552,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -494,7 +564,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-40y4f5f2uhp2","comments":"","devices":{},"helpers":{"updatedb_disabled":true,"distro":true,"modules_dep":true,"network":true,"devtmpfs_automount":true},"interfaces":[{"purpose":"public"},{"label":"testvlan","purpose":"vlan"},{"purpose":"vpc","subnet_id":68949,"ipv4":{"vpc":"192.168.0.87"}}],"memory_limit":0,"kernel":"linode/latest-64bit","init_rd":null,"root_device":"/dev/sda","run_level":"default","virt_mode":"paravirt"}'
+ body: '{"label":"go-test-conf-nwp0gw7611b9","comments":"","devices":{},"helpers":{"updatedb_disabled":true,"distro":true,"modules_dep":true,"network":false,"devtmpfs_automount":true},"interfaces":[{"purpose":"public"},{"label":"testvlan","purpose":"vlan"},{"purpose":"vpc","subnet_id":76446,"ipv4":{"vpc":"192.168.0.87"}}],"memory_limit":0,"kernel":"linode/latest-64bit","init_rd":null,"root_device":"/dev/sda","run_level":"default","virt_mode":"paravirt"}'
form: {}
headers:
Accept:
@@ -503,23 +573,23 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714781/configs/63921823
+ url: https://api.linode.com/v4beta/linode/instances/61874251/configs/65094712
method: PUT
response:
- body: '{"id": 63921823, "label": "go-test-conf-40y4f5f2uhp2", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ body: '{"id": 65094712, "label": "go-test-conf-nwp0gw7611b9", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
"sdf": null, "sdg": null, "sdh": null}, "initrd": null, "run_level": "default",
- "virt_mode": "paravirt", "interfaces": [{"id": 1832258, "purpose": "public",
+ "virt_mode": "paravirt", "interfaces": [{"id": 2047757, "purpose": "public",
"primary": false, "active": false, "ipam_address": null, "label": null, "vpc_id":
null, "subnet_id": null, "ipv4": null, "ipv6": null, "ip_ranges": null}, {"id":
- 1832259, "purpose": "vlan", "primary": false, "active": false, "ipam_address":
+ 2047758, "purpose": "vlan", "primary": false, "active": false, "ipam_address":
"", "label": "testvlan", "vpc_id": null, "subnet_id": null, "ipv4": null, "ipv6":
- null, "ip_ranges": null}, {"id": 1832260, "purpose": "vpc", "primary": false,
- "active": false, "ipam_address": null, "label": null, "vpc_id": 70778, "subnet_id":
- 68949, "ipv4": {"vpc": "192.168.0.87", "nat_1_1": null}, "ipv6": null, "ip_ranges":
+ null, "ip_ranges": null}, {"id": 2047759, "purpose": "vpc", "primary": false,
+ "active": false, "ipam_address": null, "label": null, "vpc_id": 78827, "subnet_id":
+ 76446, "ipv4": {"vpc": "192.168.0.87", "nat_1_1": null}, "ipv6": null, "ip_ranges":
[]}]}'
headers:
Access-Control-Allow-Credentials:
@@ -532,6 +602,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -541,7 +613,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:42 GMT
+ - Thu, 25 Jul 2024 17:46:24 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -557,7 +629,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -575,23 +650,23 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714781/configs/63921823
+ url: https://api.linode.com/v4beta/linode/instances/61874251/configs/65094712
method: GET
response:
- body: '{"id": 63921823, "label": "go-test-conf-40y4f5f2uhp2", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ body: '{"id": 65094712, "label": "go-test-conf-nwp0gw7611b9", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
"sdf": null, "sdg": null, "sdh": null}, "initrd": null, "run_level": "default",
- "virt_mode": "paravirt", "interfaces": [{"id": 1832258, "purpose": "public",
+ "virt_mode": "paravirt", "interfaces": [{"id": 2047757, "purpose": "public",
"primary": false, "active": false, "ipam_address": null, "label": null, "vpc_id":
null, "subnet_id": null, "ipv4": null, "ipv6": null, "ip_ranges": null}, {"id":
- 1832259, "purpose": "vlan", "primary": false, "active": false, "ipam_address":
+ 2047758, "purpose": "vlan", "primary": false, "active": false, "ipam_address":
"", "label": "testvlan", "vpc_id": null, "subnet_id": null, "ipv4": null, "ipv6":
- null, "ip_ranges": null}, {"id": 1832260, "purpose": "vpc", "primary": false,
- "active": false, "ipam_address": null, "label": null, "vpc_id": 70778, "subnet_id":
- 68949, "ipv4": {"vpc": "192.168.0.87", "nat_1_1": null}, "ipv6": null, "ip_ranges":
+ null, "ip_ranges": null}, {"id": 2047759, "purpose": "vpc", "primary": false,
+ "active": false, "ipam_address": null, "label": null, "vpc_id": 78827, "subnet_id":
+ 76446, "ipv4": {"vpc": "192.168.0.87", "nat_1_1": null}, "ipv6": null, "ip_ranges":
[]}]}'
headers:
Access-Control-Allow-Credentials:
@@ -604,6 +679,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -613,7 +690,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:42 GMT
+ - Thu, 25 Jul 2024 17:46:25 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -630,7 +707,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -648,23 +728,23 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714781/configs/63921823
+ url: https://api.linode.com/v4beta/linode/instances/61874251/configs/65094712
method: PUT
response:
- body: '{"id": 63921823, "label": "go-test-conf-40y4f5f2uhp2", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ body: '{"id": 65094712, "label": "go-test-conf-nwp0gw7611b9", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
"sdf": null, "sdg": null, "sdh": null}, "initrd": null, "run_level": "default",
- "virt_mode": "paravirt", "interfaces": [{"id": 1832258, "purpose": "public",
+ "virt_mode": "paravirt", "interfaces": [{"id": 2047757, "purpose": "public",
"primary": false, "active": false, "ipam_address": null, "label": null, "vpc_id":
null, "subnet_id": null, "ipv4": null, "ipv6": null, "ip_ranges": null}, {"id":
- 1832259, "purpose": "vlan", "primary": false, "active": false, "ipam_address":
+ 2047758, "purpose": "vlan", "primary": false, "active": false, "ipam_address":
"", "label": "testvlan", "vpc_id": null, "subnet_id": null, "ipv4": null, "ipv6":
- null, "ip_ranges": null}, {"id": 1832260, "purpose": "vpc", "primary": false,
- "active": false, "ipam_address": null, "label": null, "vpc_id": 70778, "subnet_id":
- 68949, "ipv4": {"vpc": "192.168.0.87", "nat_1_1": null}, "ipv6": null, "ip_ranges":
+ null, "ip_ranges": null}, {"id": 2047759, "purpose": "vpc", "primary": false,
+ "active": false, "ipam_address": null, "label": null, "vpc_id": 78827, "subnet_id":
+ 76446, "ipv4": {"vpc": "192.168.0.87", "nat_1_1": null}, "ipv6": null, "ip_ranges":
[]}]}'
headers:
Access-Control-Allow-Credentials:
@@ -677,6 +757,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -686,7 +768,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:42 GMT
+ - Thu, 25 Jul 2024 17:46:25 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -702,7 +784,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -720,7 +805,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714781
+ url: https://api.linode.com/v4beta/linode/instances/61874251
method: DELETE
response:
body: '{}'
@@ -735,6 +820,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -746,7 +833,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:43 GMT
+ - Thu, 25 Jul 2024 17:46:25 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -761,7 +848,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -779,7 +869,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/vpcs/70778
+ url: https://api.linode.com/v4beta/vpcs/78827
method: DELETE
response:
body: '{}'
@@ -794,6 +884,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -805,7 +897,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:43 GMT
+ - Thu, 25 Jul 2024 17:46:25 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -820,7 +912,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestInstance_Config_Update.yaml b/test/integration/fixtures/TestInstance_Config_Update.yaml
index a5f62bd5a..b6f91c10c 100644
--- a/test/integration/fixtures/TestInstance_Config_Update.yaml
+++ b/test/integration/fixtures/TestInstance_Config_Update.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
- "Managed Databases", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
"1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,95 +166,142 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "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,
+ Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
+ 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
+ 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
+ "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
+ 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
+ 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -263,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -272,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:54 GMT
+ - Thu, 25 Jul 2024 17:46:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -289,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -298,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-70px32xx94gh","firewall_id":605230,"booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-8b7su5ip013i","firewall_id":692854,"booted":false}'
form: {}
headers:
Accept:
@@ -310,16 +365,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 60714791, "label": "go-test-ins-wo-disk-70px32xx94gh", "group":
+ body: '{"id": 61874261, "label": "go-test-ins-wo-disk-8b7su5ip013i", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["45.79.122.189"], "ipv6": "1234::5678/128",
- "image": null, "region": "ap-west", "specs": {"disk": 25600, "memory": 1024,
- "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "a6631ebd8a4943374cee069c0359a506b61c733a", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["139.144.1.65"], "ipv6": "1234::5678/128",
+ "image": null, "region": "ap-west", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu":
+ 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io": 10000},
+ "backups": {"enabled": true, "available": false, "schedule": {"day": null, "window":
+ null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true,
+ "tags": [], "host_uuid": "d946738609b866787b882e81aabef414a072050a", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -331,18 +386,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "786"
+ - "805"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:54 GMT
+ - Thu, 25 Jul 2024 17:46:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -357,7 +414,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -366,7 +426,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-p9q0vw2ve015","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-02s7ibqa563x","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -375,11 +435,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714791/configs
+ url: https://api.linode.com/v4beta/linode/instances/61874261/configs
method: POST
response:
- body: '{"id": 63921834, "label": "go-test-conf-p9q0vw2ve015", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ body: '{"id": 65094719, "label": "go-test-conf-02s7ibqa563x", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
@@ -396,18 +456,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "539"
+ - "540"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:54 GMT
+ - Thu, 25 Jul 2024 17:46:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -422,7 +484,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -431,7 +496,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-conf-test-gi6197d7gxq7","comments":"","devices":{},"interfaces":null,"memory_limit":0,"init_rd":null,"root_device":"/dev/root"}'
+ body: '{"label":"go-conf-test-n336lgja8h93","comments":"","devices":{},"interfaces":null,"memory_limit":0,"init_rd":null,"root_device":"/dev/root"}'
form: {}
headers:
Accept:
@@ -440,11 +505,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714791/configs/63921834
+ url: https://api.linode.com/v4beta/linode/instances/61874261/configs/65094719
method: PUT
response:
- body: '{"id": 63921834, "label": "go-conf-test-gi6197d7gxq7", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ body: '{"id": 65094719, "label": "go-conf-test-n336lgja8h93", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/root",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
@@ -461,18 +526,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "540"
+ - "541"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:54 GMT
+ - Thu, 25 Jul 2024 17:46:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -487,7 +554,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -505,7 +575,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714791
+ url: https://api.linode.com/v4beta/linode/instances/61874261
method: DELETE
response:
body: '{}'
@@ -520,6 +590,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -531,7 +603,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:55 GMT
+ - Thu, 25 Jul 2024 17:46:34 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -546,7 +618,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestInstance_Configs_List.yaml b/test/integration/fixtures/TestInstance_Configs_List.yaml
index 052d69524..50a6fb049 100644
--- a/test/integration/fixtures/TestInstance_Configs_List.yaml
+++ b/test/integration/fixtures/TestInstance_Configs_List.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
- "Managed Databases", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
"1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,95 +166,142 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "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,
+ Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
+ 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
+ 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
+ "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
+ 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
+ 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -263,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -272,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:45 GMT
+ - Thu, 25 Jul 2024 17:46:28 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -289,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -298,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-e3s172nz38mw","firewall_id":605230,"booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-h510p20yad6n","firewall_id":692854,"booted":false}'
form: {}
headers:
Accept:
@@ -318,47 +373,7 @@ interactions:
- HEAD, GET, OPTIONS, POST, PUT, DELETE
Access-Control-Allow-Origin:
- '*'
- Cache-Control:
- - max-age=0, no-cache, no-store
- Content-Length:
- - "45"
- Content-Type:
- - application/json
- Expires:
- - Thu, 27 Jun 2024 13:11:46 GMT
- Pragma:
- - no-cache
- X-Accepted-Oauth-Scopes:
- - linodes:read_write
- X-Frame-Options:
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "5"
- status: 429 Too Many Requests
- code: 429
- duration: ""
-- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-e3s172nz38mw","firewall_id":605230,"booted":false}'
- form: {}
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances
- method: POST
- response:
- body: '{"errors": [{"reason": "Too many requests"}]}'
- 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:
+ Akamai-Internal-Account:
- '*'
Cache-Control:
- max-age=0, no-cache, no-store
@@ -367,7 +382,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:49 GMT
+ - Thu, 25 Jul 2024 17:46:28 GMT
Pragma:
- no-cache
X-Accepted-Oauth-Scopes:
@@ -375,14 +390,17 @@ interactions:
X-Frame-Options:
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "5"
status: 429 Too Many Requests
code: 429
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-e3s172nz38mw","firewall_id":605230,"booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-h510p20yad6n","firewall_id":692854,"booted":false}'
form: {}
headers:
Accept:
@@ -394,16 +412,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 60714790, "label": "go-test-ins-wo-disk-e3s172nz38mw", "group":
+ body: '{"id": 61874257, "label": "go-test-ins-wo-disk-h510p20yad6n", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["45.79.122.135"], "ipv6": "1234::5678/128",
- "image": null, "region": "ap-west", "specs": {"disk": 25600, "memory": 1024,
- "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "a6631ebd8a4943374cee069c0359a506b61c733a", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["45.79.126.166"], "ipv6": "1234::5678/128",
+ "image": null, "region": "ap-west", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu":
+ 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io": 10000},
+ "backups": {"enabled": true, "available": false, "schedule": {"day": null, "window":
+ null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true,
+ "tags": [], "host_uuid": "0be889ff8efab8e9f1cbbb28b1799aa440e95149", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -415,18 +433,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "785"
+ - "806"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:53 GMT
+ - Thu, 25 Jul 2024 17:46:32 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -441,7 +461,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -450,7 +473,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-9ji31eom7y89","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-e2632p9rfc1a","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -459,11 +482,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714790/configs
+ url: https://api.linode.com/v4beta/linode/instances/61874257/configs
method: POST
response:
- body: '{"id": 63921833, "label": "go-test-conf-9ji31eom7y89", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ body: '{"id": 65094718, "label": "go-test-conf-e2632p9rfc1a", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
@@ -480,18 +503,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "539"
+ - "540"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:53 GMT
+ - Thu, 25 Jul 2024 17:46:32 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -506,7 +531,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -524,12 +552,12 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714790/configs?page=1
+ url: https://api.linode.com/v4beta/linode/instances/61874257/configs?page=1
method: GET
response:
- body: '{"data": [{"id": 63921833, "label": "go-test-conf-9ji31eom7y89", "helpers":
+ body: '{"data": [{"id": 65094718, "label": "go-test-conf-e2632p9rfc1a", "helpers":
{"updatedb_disabled": true, "distro": true, "modules_dep": true, "network":
- true, "devtmpfs_automount": true}, "kernel": "linode/latest-64bit", "comments":
+ false, "devtmpfs_automount": true}, "kernel": "linode/latest-64bit", "comments":
"", "memory_limit": 0, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
"root_device": "/dev/sda", "devices": {"sda": null, "sdb": null, "sdc": null,
"sdd": null, "sde": null, "sdf": null, "sdg": null, "sdh": null}, "initrd":
@@ -546,18 +574,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "588"
+ - "589"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:53 GMT
+ - Thu, 25 Jul 2024 17:46:32 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -573,7 +603,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -591,7 +624,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60714790
+ url: https://api.linode.com/v4beta/linode/instances/61874257
method: DELETE
response:
body: '{}'
@@ -606,6 +639,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -617,7 +652,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 27 Jun 2024 13:11:53 GMT
+ - Thu, 25 Jul 2024 17:46:32 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -632,7 +667,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestInstance_Disk_Resize.yaml b/test/integration/fixtures/TestInstance_Disk_Resize.yaml
index ea8e00d16..528551767 100644
--- a/test/integration/fixtures/TestInstance_Disk_Resize.yaml
+++ b/test/integration/fixtures/TestInstance_Disk_Resize.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 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"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
+ 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
+ "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,114 +166,142 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "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,
+ Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
+ 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
+ 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
+ "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
+ 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
+ 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -282,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -291,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 05 Jul 2024 20:46:16 GMT
+ - Thu, 25 Jul 2024 17:40:14 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -308,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -317,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-0cdlv6828in3","firewall_id":634492,"booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-66g8e36xgr4g","firewall_id":692834,"booted":false}'
form: {}
headers:
Accept:
@@ -329,16 +365,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 61085384, "label": "go-test-ins-wo-disk-0cdlv6828in3", "group":
+ body: '{"id": 61874057, "label": "go-test-ins-wo-disk-66g8e36xgr4g", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.61.45"], "ipv6": "1234::5678/128",
- "image": null, "region": "ap-west", "specs": {"disk": 25600, "memory": 1024,
- "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "009ae04397a377b736399352007156c94585f928", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["172.105.40.58"], "ipv6": "1234::5678/128",
+ "image": null, "region": "ap-west", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu":
+ 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io": 10000},
+ "backups": {"enabled": true, "available": false, "schedule": {"day": null, "window":
+ null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true,
+ "tags": [], "host_uuid": "d946738609b866787b882e81aabef414a072050a", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -350,18 +386,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "785"
+ - "806"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 05 Jul 2024 20:46:17 GMT
+ - Thu, 25 Jul 2024 17:40:15 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -376,7 +414,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -385,7 +426,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-o4ul6a3c30z0","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-27l1s5u7rcv7","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -394,11 +435,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61085384/configs
+ url: https://api.linode.com/v4beta/linode/instances/61874057/configs
method: POST
response:
- body: '{"id": 64299387, "label": "go-test-conf-o4ul6a3c30z0", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ body: '{"id": 65094523, "label": "go-test-conf-27l1s5u7rcv7", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
@@ -415,18 +456,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "539"
+ - "540"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 05 Jul 2024 20:46:17 GMT
+ - Thu, 25 Jul 2024 17:40:15 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -441,7 +484,84 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
+ X-Ratelimit-Limit:
+ - "400"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances/61874057
+ method: GET
+ response:
+ body: '{"id": 61874057, "label": "go-test-ins-wo-disk-66g8e36xgr4g", "group":
+ "", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "type": "g6-nanode-1", "ipv4": ["172.105.40.58"], "ipv6": "1234::5678/128",
+ "image": null, "region": "ap-west", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu":
+ 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io": 10000},
+ "backups": {"enabled": true, "available": false, "schedule": {"day": "Scheduling",
+ "window": "Scheduling"}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled":
+ true, "tags": [], "host_uuid": "d946738609b866787b882e81aabef414a072050a", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
- '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "822"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Thu, 25 Jul 2024 17:40:30 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -459,18 +579,18 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61085384
+ url: https://api.linode.com/v4beta/linode/instances/61874057
method: GET
response:
- body: '{"id": 61085384, "label": "go-test-ins-wo-disk-0cdlv6828in3", "group":
+ body: '{"id": 61874057, "label": "go-test-ins-wo-disk-66g8e36xgr4g", "group":
"", "status": "offline", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.61.45"], "ipv6": "1234::5678/128",
- "image": null, "region": "ap-west", "specs": {"disk": 25600, "memory": 1024,
- "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": "Scheduling", "window": "Scheduling"},
- "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags":
- [], "host_uuid": "009ae04397a377b736399352007156c94585f928", "has_user_data":
+ "type": "g6-nanode-1", "ipv4": ["172.105.40.58"], "ipv6": "1234::5678/128",
+ "image": null, "region": "ap-west", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu":
+ 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io": 10000},
+ "backups": {"enabled": true, "available": false, "schedule": {"day": "Scheduling",
+ "window": "Scheduling"}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled":
+ true, "tags": [], "host_uuid": "d946738609b866787b882e81aabef414a072050a", "has_user_data":
false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
@@ -483,18 +603,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "796"
+ - "817"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 05 Jul 2024 20:46:32 GMT
+ - Thu, 25 Jul 2024 17:40:45 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -510,7 +632,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -519,7 +644,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"disk-test-99s9yghl6j34","size":2000,"filesystem":"ext4"}'
+ body: '{"label":"disk-test-r3yx4b71b5g0","size":2000,"filesystem":"ext4"}'
form: {}
headers:
Accept:
@@ -528,10 +653,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61085384/disks
+ url: https://api.linode.com/v4beta/linode/instances/61874057/disks
method: POST
response:
- body: '{"id": 120070560, "status": "not ready", "label": "disk-test-99s9yghl6j34",
+ body: '{"id": 121423259, "status": "not ready", "label": "disk-test-r3yx4b71b5g0",
"created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "filesystem":
"ext4", "size": 2000}'
headers:
@@ -545,6 +670,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -556,7 +683,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 05 Jul 2024 20:46:32 GMT
+ - Thu, 25 Jul 2024 17:40:45 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -571,7 +698,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -589,10 +719,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61085384/disks?page=1
+ url: https://api.linode.com/v4beta/linode/instances/61874057/disks?page=1
method: GET
response:
- body: '{"data": [{"id": 120070560, "status": "ready", "label": "disk-test-99s9yghl6j34",
+ body: '{"data": [{"id": 121423259, "status": "ready", "label": "disk-test-r3yx4b71b5g0",
"created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "filesystem":
"ext4", "size": 2000}], "page": 1, "pages": 1, "results": 1}'
headers:
@@ -606,6 +736,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -617,7 +749,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 05 Jul 2024 20:46:47 GMT
+ - Thu, 25 Jul 2024 17:41:00 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -633,7 +765,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -651,7 +786,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61085384/disks/120070560/resize
+ url: https://api.linode.com/v4beta/linode/instances/61874057/disks/121423259/resize
method: POST
response:
body: '{}'
@@ -666,6 +801,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -677,7 +814,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 05 Jul 2024 20:46:48 GMT
+ - Thu, 25 Jul 2024 17:41:00 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -692,7 +829,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -710,7 +850,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61085384
+ url: https://api.linode.com/v4beta/linode/instances/61874057
method: DELETE
response:
body: '{}'
@@ -725,6 +865,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -736,7 +878,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 05 Jul 2024 20:46:48 GMT
+ - Thu, 25 Jul 2024 17:41:01 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -751,7 +893,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestInstance_Resize.yaml b/test/integration/fixtures/TestInstance_Resize.yaml
index f72572d0e..169fa289a 100644
--- a/test/integration/fixtures/TestInstance_Resize.yaml
+++ b/test/integration/fixtures/TestInstance_Resize.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 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"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
+ 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
+ "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,114 +166,142 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 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,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "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,
+ Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
+ 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
+ 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
+ "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
+ 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
+ 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -282,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -291,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 21:09:52 GMT
+ - Thu, 25 Jul 2024 18:25:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -308,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -317,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-k2ui4r9303xh","root_pass":"27l=dRg[EZ2RFSt+Jp\u0026T223U6l;nB~U9Gz~(3+Bu).3z1o40![19Qs9S\\s^xPvb\u003c","image":"linode/debian9","firewall_id":611260,"booted":true}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-9a96qxkr468l","root_pass":"r8m2n+R5~@M}a2fS@^:dH]lXi)36MUxo3''|Bpzz531JV[]9P)0T*kWT9D9tdM\u002632","image":"linode/debian9","firewall_id":692998,"booted":true}'
form: {}
headers:
Accept:
@@ -329,16 +365,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 60783380, "label": "go-test-ins-k2ui4r9303xh", "group": "", "status":
+ body: '{"id": 61875393, "label": "go-test-ins-9a96qxkr468l", "group": "", "status":
"provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.48.88"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "454cc4590caa2a8de6a482c1c9e382273edb1576", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["139.144.1.9"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
+ null, "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled":
+ true, "tags": [], "host_uuid": "8aca7a754c37f5b4e94afd4a43d57ad2c7090730", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -350,18 +386,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "789"
+ - "808"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 21:09:53 GMT
+ - Thu, 25 Jul 2024 18:25:19 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -376,7 +414,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -394,19 +435,19 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60783380
+ url: https://api.linode.com/v4beta/linode/instances/61875393
method: GET
response:
- body: '{"id": 60783380, "label": "go-test-ins-k2ui4r9303xh", "group": "", "status":
+ body: '{"id": 61875393, "label": "go-test-ins-9a96qxkr468l", "group": "", "status":
"provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.48.88"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": "Scheduling", "window": "Scheduling"},
- "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags":
- [], "host_uuid": "454cc4590caa2a8de6a482c1c9e382273edb1576", "has_user_data":
- false, "placement_group": null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["139.144.1.9"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
+ "Scheduling", "window": "Scheduling"}, "last_successful": null}, "hypervisor":
+ "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "8aca7a754c37f5b4e94afd4a43d57ad2c7090730",
+ "has_user_data": false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -418,87 +459,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "805"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Fri, 28 Jun 2024 21:10:08 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - linodes:read_only
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60783380
- method: GET
- response:
- body: '{"id": 60783380, "label": "go-test-ins-k2ui4r9303xh", "group": "", "status":
- "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.48.88"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": "Scheduling", "window": "Scheduling"},
- "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags":
- [], "host_uuid": "454cc4590caa2a8de6a482c1c9e382273edb1576", "has_user_data":
- false, "placement_group": null, "lke_cluster_id": null}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
+ Akamai-Internal-Account:
- '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "805"
+ - "824"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 21:10:23 GMT
+ - Thu, 25 Jul 2024 18:25:34 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -514,7 +488,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -532,19 +509,19 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60783380
+ url: https://api.linode.com/v4beta/linode/instances/61875393
method: GET
response:
- body: '{"id": 60783380, "label": "go-test-ins-k2ui4r9303xh", "group": "", "status":
+ body: '{"id": 61875393, "label": "go-test-ins-9a96qxkr468l", "group": "", "status":
"booting", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.48.88"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": "Scheduling", "window": "Scheduling"},
- "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags":
- [], "host_uuid": "454cc4590caa2a8de6a482c1c9e382273edb1576", "has_user_data":
- false, "placement_group": null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["139.144.1.9"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": true, "schedule": {"day":
+ "Scheduling", "window": "Scheduling"}, "last_successful": null}, "hypervisor":
+ "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "8aca7a754c37f5b4e94afd4a43d57ad2c7090730",
+ "has_user_data": false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -556,18 +533,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "800"
+ - "818"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 21:10:38 GMT
+ - Thu, 25 Jul 2024 18:25:49 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -583,7 +562,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -601,19 +583,19 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60783380
+ url: https://api.linode.com/v4beta/linode/instances/61875393
method: GET
response:
- body: '{"id": 60783380, "label": "go-test-ins-k2ui4r9303xh", "group": "", "status":
+ body: '{"id": 61875393, "label": "go-test-ins-9a96qxkr468l", "group": "", "status":
"running", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.48.88"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": "Scheduling", "window": "Scheduling"},
- "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags":
- [], "host_uuid": "454cc4590caa2a8de6a482c1c9e382273edb1576", "has_user_data":
- false, "placement_group": null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["139.144.1.9"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": true, "schedule": {"day":
+ "Scheduling", "window": "Scheduling"}, "last_successful": null}, "hypervisor":
+ "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "8aca7a754c37f5b4e94afd4a43d57ad2c7090730",
+ "has_user_data": false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -625,18 +607,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "800"
+ - "818"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 21:10:53 GMT
+ - Thu, 25 Jul 2024 18:26:04 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -652,7 +636,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -670,7 +657,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60783380/resize
+ url: https://api.linode.com/v4beta/linode/instances/61875393/resize
method: POST
response:
body: '{}'
@@ -685,6 +672,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -696,7 +685,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 21:10:54 GMT
+ - Thu, 25 Jul 2024 18:26:05 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -711,7 +700,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -729,7 +721,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60783380
+ url: https://api.linode.com/v4beta/linode/instances/61875393
method: DELETE
response:
body: '{}'
@@ -744,6 +736,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -755,7 +749,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 21:10:54 GMT
+ - Thu, 25 Jul 2024 18:26:05 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -770,7 +764,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestInstances_List.yaml b/test/integration/fixtures/TestInstances_List.yaml
index 21f6c62bd..844cd980d 100644
--- a/test/integration/fixtures/TestInstances_List.yaml
+++ b/test/integration/fixtures/TestInstances_List.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 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"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
+ 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
+ "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,114 +166,142 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 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,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "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,
+ Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
+ 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
+ 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
+ "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
+ 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
+ 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -282,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -291,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 21:15:12 GMT
+ - Thu, 25 Jul 2024 18:41:30 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -308,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -317,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"eu-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-35do6jg65bi5","firewall_id":611282,"booted":false}'
+ body: '{"region":"eu-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-q01fhy908w0r","firewall_id":693078,"booted":false}'
form: {}
headers:
Accept:
@@ -329,16 +365,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 60783533, "label": "go-test-ins-wo-disk-35do6jg65bi5", "group":
+ body: '{"id": 61875974, "label": "go-test-ins-wo-disk-q01fhy908w0r", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["178.79.181.199"], "ipv6": "1234::5678/128",
- "image": null, "region": "eu-west", "specs": {"disk": 25600, "memory": 1024,
- "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "6542c8ea9d24a3069a77cdeeb5c6ad1bae6ffb93", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["139.162.229.23"], "ipv6": "1234::5678/128",
+ "image": null, "region": "eu-west", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu":
+ 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io": 10000},
+ "backups": {"enabled": true, "available": false, "schedule": {"day": null, "window":
+ null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true,
+ "tags": [], "host_uuid": "53e4a52a1fc1e459ffa48d6d56b511ff54985871", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -350,18 +386,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "786"
+ - "807"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 21:15:13 GMT
+ - Thu, 25 Jul 2024 18:41:31 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -376,7 +414,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -385,7 +426,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-th7785ac1v5q","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-m3nx2h101wi8","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -394,11 +435,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60783533/configs
+ url: https://api.linode.com/v4beta/linode/instances/61875974/configs
method: POST
response:
- body: '{"id": 63991474, "label": "go-test-conf-th7785ac1v5q", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ body: '{"id": 65096491, "label": "go-test-conf-m3nx2h101wi8", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
@@ -415,18 +456,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "539"
+ - "540"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 21:15:13 GMT
+ - Thu, 25 Jul 2024 18:41:31 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -441,7 +484,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -460,19 +506,19 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"id": 60783533}'
+ - '{"id": 61875974}'
url: https://api.linode.com/v4beta/linode/instances?page=1
method: GET
response:
- body: '{"data": [{"id": 60783533, "label": "go-test-ins-wo-disk-35do6jg65bi5",
+ body: '{"data": [{"id": 61875974, "label": "go-test-ins-wo-disk-q01fhy908w0r",
"group": "", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated":
- "2018-01-02T03:04:05", "type": "g6-nanode-1", "ipv4": ["178.79.181.199"], "ipv6":
- "1234::5678/128", "image": null, "region": "eu-west", "specs":
- {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
- {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
- 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
- "Scheduling", "window": "Scheduling"}, "last_successful": null}, "hypervisor":
- "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "6542c8ea9d24a3069a77cdeeb5c6ad1bae6ffb93",
+ "2018-01-02T03:04:05", "type": "g6-nanode-1", "ipv4": ["139.162.229.23"], "ipv6":
+ "1234::5678/128", "image": null, "region": "eu-west", "site_type":
+ "core", "specs": {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer":
+ 1000}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": "Scheduling", "window": "Scheduling"}, "last_successful": null}, "hypervisor":
+ "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "53e4a52a1fc1e459ffa48d6d56b511ff54985871",
"has_user_data": false, "placement_group": null, "lke_cluster_id": null}], "page":
1, "pages": 1, "results": 1}'
headers:
@@ -486,18 +532,18 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
- Content-Length:
- - "851"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 21:15:13 GMT
+ - Thu, 25 Jul 2024 18:41:31 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -505,6 +551,7 @@ interactions:
Vary:
- Authorization, X-Filter
- Authorization, X-Filter
+ - Accept-Encoding
X-Accepted-Oauth-Scopes:
- linodes:read_only
X-Content-Type-Options:
@@ -513,7 +560,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -531,7 +581,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/60783533
+ url: https://api.linode.com/v4beta/linode/instances/61875974
method: DELETE
response:
body: '{}'
@@ -546,6 +596,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -557,7 +609,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 28 Jun 2024 21:15:14 GMT
+ - Thu, 25 Jul 2024 18:41:31 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -572,7 +624,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestNodeBalancerNode_Create.yaml b/test/integration/fixtures/TestNodeBalancerNode_Create.yaml
index 219984465..0e937bcff 100644
--- a/test/integration/fixtures/TestNodeBalancerNode_Create.yaml
+++ b/test/integration/fixtures/TestNodeBalancerNode_Create.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 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"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
+ 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
+ "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,114 +166,142 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "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,
+ Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
+ 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
+ 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
+ "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
+ 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
+ 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -282,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -291,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:39:05 GMT
+ - Thu, 25 Jul 2024 18:52:36 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -308,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -317,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-def","region":"ap-west","client_conn_throttle":20,"tags":null,"firewall_id":640280}'
+ body: '{"label":"go-test-def","region":"ap-west","client_conn_throttle":20,"tags":null,"firewall_id":693141}'
form: {}
headers:
Accept:
@@ -329,10 +365,11 @@ interactions:
url: https://api.linode.com/v4beta/nodebalancers
method: POST
response:
- body: '{"id": 767855, "label": "go-test-def", "region": "ap-west", "hostname":
- "172-232-86-10.ip.linodeusercontent.com", "ipv4": "172.232.86.10", "ipv6": "1234::5678",
- "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "client_conn_throttle":
- 20, "tags": [], "transfer": {"in": null, "out": null, "total": null}}'
+ body: '{"id": 805593, "label": "go-test-def", "region": "ap-west", "hostname":
+ "172-105-45-173.ip.linodeusercontent.com", "ipv4": "172.105.45.173", "ipv6":
+ "1234::5678", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "client_conn_throttle": 20, "tags": [], "transfer": {"in": null, "out": null,
+ "total": null}}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -344,18 +381,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "334"
+ - "336"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:39:06 GMT
+ - Thu, 25 Jul 2024 18:52:36 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -370,7 +409,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -388,14 +430,14 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/nodebalancers/767855/configs
+ url: https://api.linode.com/v4beta/nodebalancers/805593/configs
method: POST
response:
- body: '{"id": 1266884, "port": 80, "protocol": "http", "algorithm": "roundrobin",
+ body: '{"id": 1323752, "port": 80, "protocol": "http", "algorithm": "roundrobin",
"stickiness": "none", "check": "none", "check_interval": 60, "check_timeout":
30, "check_attempts": 3, "check_path": "", "check_body": "", "check_passive":
true, "proxy_protocol": "none", "cipher_suite": "recommended", "nodebalancer_id":
- 767855, "ssl_commonname": "", "ssl_fingerprint": "", "ssl_cert": null, "ssl_key":
+ 805593, "ssl_commonname": "", "ssl_fingerprint": "", "ssl_cert": null, "ssl_key":
null, "nodes_status": {"up": 0, "down": 0}}'
headers:
Access-Control-Allow-Credentials:
@@ -408,6 +450,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -419,7 +463,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:39:06 GMT
+ - Thu, 25 Jul 2024 18:52:36 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -434,7 +478,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -452,7 +499,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/nodebalancers/767855/configs/1266884
+ url: https://api.linode.com/v4beta/nodebalancers/805593/configs/1323752
method: DELETE
response:
body: '{}'
@@ -467,6 +514,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -478,7 +527,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:39:07 GMT
+ - Thu, 25 Jul 2024 18:52:38 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -493,7 +542,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -511,7 +563,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/nodebalancers/767855
+ url: https://api.linode.com/v4beta/nodebalancers/805593
method: DELETE
response:
body: '{}'
@@ -526,6 +578,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -537,7 +591,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:39:08 GMT
+ - Thu, 25 Jul 2024 18:52:38 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -552,7 +606,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestNodeBalancerNode_CreateInstance.yaml b/test/integration/fixtures/TestNodeBalancerNode_CreateInstance.yaml
index dbd029776..6c7060d20 100644
--- a/test/integration/fixtures/TestNodeBalancerNode_CreateInstance.yaml
+++ b/test/integration/fixtures/TestNodeBalancerNode_CreateInstance.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 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"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
+ 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
+ "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,114 +166,142 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "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,
+ Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
+ 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
+ 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
+ "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
+ 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
+ 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -282,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -291,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:39:06 GMT
+ - Thu, 25 Jul 2024 18:52:36 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -308,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -317,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-53r917h8vbdg","root_pass":"sHT+=}1bnLY1eD''cr@RYT3}y12(cQV5Fz|2zw(jv(14a}I-Xq2P(i353A\u003e3!X01[","image":"linode/debian9","firewall_id":640280,"booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-pc0983c8ly2i","root_pass":"ppjQCeY[1M80\u0026y-5P25*ehNeDXEO81`m*C8t8Y\u003e?1evE#0w@858,yHpJB9-\u003cl+}?","image":"linode/debian9","firewall_id":693141,"booted":false}'
form: {}
headers:
Accept:
@@ -329,16 +365,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 61169916, "label": "go-test-ins-53r917h8vbdg", "group": "", "status":
+ body: '{"id": 61876288, "label": "go-test-ins-pc0983c8ly2i", "group": "", "status":
"provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.55.202"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "3cea0f3e7e25a8eb97340be86615d802453acd3a", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["172.105.253.75"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
+ null, "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled":
+ true, "tags": [], "host_uuid": "0e0c1ef96c34828ce8b53e9e04870191260828c7", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -350,18 +386,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "790"
+ - "811"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:39:07 GMT
+ - Thu, 25 Jul 2024 18:52:37 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -376,7 +414,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -394,11 +435,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169916/ips
+ url: https://api.linode.com/v4beta/linode/instances/61876288/ips
method: POST
response:
- body: '{"address": "192.168.128.81", "gateway": null, "subnet_mask": "255.255.128.0",
- "prefix": 17, "type": "ipv4", "public": false, "rdns": null, "linode_id": 61169916,
+ body: '{"address": "192.168.139.192", "gateway": null, "subnet_mask": "255.255.128.0",
+ "prefix": 17, "type": "ipv4", "public": false, "rdns": null, "linode_id": 61876288,
"region": "ap-west", "vpc_nat_1_1": null}'
headers:
Access-Control-Allow-Credentials:
@@ -411,18 +452,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "204"
+ - "205"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:39:07 GMT
+ - Thu, 25 Jul 2024 18:52:38 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -437,7 +480,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -446,7 +492,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"address":"192.168.128.81:8080","label":"go-node-test-def","weight":10,"mode":"accept"}'
+ body: '{"address":"192.168.139.192:8080","label":"go-node-test-def","weight":10,"mode":"accept"}'
form: {}
headers:
Accept:
@@ -455,12 +501,12 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/nodebalancers/767855/configs/1266884/nodes
+ url: https://api.linode.com/v4beta/nodebalancers/805593/configs/1323752/nodes
method: POST
response:
- body: '{"id": 2051557828, "address": "192.168.128.81:8080", "label": "go-node-test-def",
- "status": "Unknown", "weight": 10, "mode": "accept", "config_id": 1266884, "nodebalancer_id":
- 767855}'
+ body: '{"id": 2053263282, "address": "192.168.139.192:8080", "label": "go-node-test-def",
+ "status": "Unknown", "weight": 10, "mode": "accept", "config_id": 1323752, "nodebalancer_id":
+ 805593}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -472,18 +518,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "183"
+ - "184"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:39:07 GMT
+ - Thu, 25 Jul 2024 18:52:38 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -498,7 +546,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -516,7 +567,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/nodebalancers/767855/configs/1266884/nodes/2051557828
+ url: https://api.linode.com/v4beta/nodebalancers/805593/configs/1323752/nodes/2053263282
method: DELETE
response:
body: '{}'
@@ -531,6 +582,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -542,7 +595,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:39:07 GMT
+ - Thu, 25 Jul 2024 18:52:38 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -557,7 +610,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -575,7 +631,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169916
+ url: https://api.linode.com/v4beta/linode/instances/61876288
method: DELETE
response:
body: '{}'
@@ -590,6 +646,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -601,7 +659,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:39:08 GMT
+ - Thu, 25 Jul 2024 18:52:38 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -616,7 +674,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestNodeBalancers_List.yaml b/test/integration/fixtures/TestNodeBalancers_List.yaml
index b848c265e..b529ef72f 100644
--- a/test/integration/fixtures/TestNodeBalancers_List.yaml
+++ b/test/integration/fixtures/TestNodeBalancers_List.yaml
@@ -17,143 +17,146 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
+ "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
+ 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
+ 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 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"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
+ 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
+ "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,114 +166,142 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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":
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "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,
+ Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
+ "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
+ 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
+ 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
+ "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
+ 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
+ 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
+ "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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,
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "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,
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
+ 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
+ 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
+ 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
+ "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
"label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -282,6 +313,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -291,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:36:39 GMT
+ - Thu, 25 Jul 2024 18:34:12 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -308,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -317,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"label":"go-test-def","region":"ap-west","client_conn_throttle":20,"tags":null,"firewall_id":640274}'
+ body: '{"label":"go-test-def","region":"ap-west","client_conn_throttle":20,"tags":null,"firewall_id":693058}'
form: {}
headers:
Accept:
@@ -329,8 +365,8 @@ interactions:
url: https://api.linode.com/v4beta/nodebalancers
method: POST
response:
- body: '{"id": 767848, "label": "go-test-def", "region": "ap-west", "hostname":
- "172-105-44-117.ip.linodeusercontent.com", "ipv4": "172.105.44.117", "ipv6":
+ body: '{"id": 805573, "label": "go-test-def", "region": "ap-west", "hostname":
+ "172-232-86-148.ip.linodeusercontent.com", "ipv4": "172.232.86.148", "ipv6":
"1234::5678", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
"client_conn_throttle": 20, "tags": [], "transfer": {"in": null, "out": null,
"total": null}}'
@@ -345,6 +381,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -356,7 +394,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:36:39 GMT
+ - Thu, 25 Jul 2024 18:34:12 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -371,7 +409,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -392,11 +433,16 @@ interactions:
url: https://api.linode.com/v4beta/nodebalancers?page=1
method: GET
response:
- body: '{"data": [{"id": 767848, "label": "go-test-def", "region": "ap-west", "hostname":
- "172-105-44-117.ip.linodeusercontent.com", "ipv4": "172.105.44.117", "ipv6":
- "1234::5678", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "client_conn_throttle": 20, "tags": [], "transfer": {"in": null, "out": null,
- "total": null}}], "page": 1, "pages": 1, "results": 1}'
+ body: '{"data": [{"id": 600437, "label": "ansible-test-585459311", "region": "us-ord",
+ "hostname": "172-234-210-203.ip.linodeusercontent.com", "ipv4": "172.234.210.203",
+ "ipv6": "1234::5678", "created": "2018-01-02T03:04:05", "updated":
+ "2018-01-02T03:04:05", "client_conn_throttle": 0, "tags": ["test1", "test2",
+ "test3"], "transfer": {"in": 52.264312744140625, "out": 46.230323791503906,
+ "total": 98.49463653564453}}, {"id": 805573, "label": "go-test-def", "region":
+ "ap-west", "hostname": "172-232-86-148.ip.linodeusercontent.com", "ipv4": "172.232.86.148",
+ "ipv6": "1234::5678", "created": "2018-01-02T03:04:05", "updated":
+ "2018-01-02T03:04:05", "client_conn_throttle": 20, "tags": [], "transfer": {"in":
+ null, "out": null, "total": null}}], "page": 1, "pages": 1, "results": 2}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -408,18 +454,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "385"
+ - "800"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:36:39 GMT
+ - Thu, 25 Jul 2024 18:34:12 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -435,7 +483,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -453,7 +504,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/nodebalancers/767848
+ url: https://api.linode.com/v4beta/nodebalancers/805573
method: DELETE
response:
body: '{}'
@@ -468,6 +519,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -479,7 +532,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:36:39 GMT
+ - Thu, 25 Jul 2024 18:34:13 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -494,7 +547,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestOAuthClient_GetFound.yaml b/test/integration/fixtures/TestOAuthClient_GetFound.yaml
index a5771dbdc..5ba8ac696 100644
--- a/test/integration/fixtures/TestOAuthClient_GetFound.yaml
+++ b/test/integration/fixtures/TestOAuthClient_GetFound.yaml
@@ -14,8 +14,8 @@ interactions:
url: https://api.linode.com/v4beta/account/oauth-clients
method: POST
response:
- body: '{"id": "32720c96aecfac5ede47", "redirect_uri": "https://example.com", "label":
- "go-client-test", "status": "active", "secret": "3e7063e5014eb448e340b1bd83c4c2677fdc031dfa8f183df84634d687784cfb",
+ body: '{"id": "519d660133f3fbb47357", "redirect_uri": "https://example.com", "label":
+ "go-client-test", "status": "active", "secret": "675a386a638d70300f4d1d3724ebd5d7f45e4903fe5e5916001692834bcf6380",
"thumbnail_url": null, "public": true}'
headers:
Access-Control-Allow-Credentials:
@@ -28,6 +28,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -39,7 +41,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 30 May 2024 23:12:09 GMT
+ - Thu, 25 Jul 2024 17:44:06 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -75,10 +77,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/account/oauth-clients/32720c96aecfac5ede47
+ url: https://api.linode.com/v4beta/account/oauth-clients/519d660133f3fbb47357
method: GET
response:
- body: '{"id": "32720c96aecfac5ede47", "redirect_uri": "https://example.com", "label":
+ body: '{"id": "519d660133f3fbb47357", "redirect_uri": "https://example.com", "label":
"go-client-test", "status": "active", "secret": "", "thumbnail_url":
null, "public": true}'
headers:
@@ -92,6 +94,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -103,7 +107,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 30 May 2024 23:12:09 GMT
+ - Thu, 25 Jul 2024 17:44:06 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -140,7 +144,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/account/oauth-clients/32720c96aecfac5ede47
+ url: https://api.linode.com/v4beta/account/oauth-clients/519d660133f3fbb47357
method: DELETE
response:
body: '{}'
@@ -155,6 +159,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -166,7 +172,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 30 May 2024 23:12:09 GMT
+ - Thu, 25 Jul 2024 17:44:07 GMT
Pragma:
- no-cache
Strict-Transport-Security:
diff --git a/test/integration/fixtures/TestOAuthClient_GetMissing.yaml b/test/integration/fixtures/TestOAuthClient_GetMissing.yaml
index 682373f2e..59bb9d9c4 100644
--- a/test/integration/fixtures/TestOAuthClient_GetMissing.yaml
+++ b/test/integration/fixtures/TestOAuthClient_GetMissing.yaml
@@ -22,6 +22,8 @@ interactions:
- HEAD, GET, OPTIONS, POST, PUT, DELETE
Access-Control-Allow-Origin:
- '*'
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -31,7 +33,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 30 May 2024 23:12:08 GMT
+ - Thu, 25 Jul 2024 17:44:06 GMT
Pragma:
- no-cache
Vary:
diff --git a/test/integration/fixtures/TestOAuthClients_List.yaml b/test/integration/fixtures/TestOAuthClients_List.yaml
index 199db0d5b..2aa60fe39 100644
--- a/test/integration/fixtures/TestOAuthClients_List.yaml
+++ b/test/integration/fixtures/TestOAuthClients_List.yaml
@@ -14,8 +14,8 @@ interactions:
url: https://api.linode.com/v4beta/account/oauth-clients
method: POST
response:
- body: '{"id": "4a48ff5903b62d743bf0", "redirect_uri": "https://example.com", "label":
- "go-client-test", "status": "active", "secret": "3e1d30e5a0a3e350ba7231cf4ba2c0863880007d62be38ebdf89fda9d2aadaff",
+ body: '{"id": "e4b5214e8826a1cac065", "redirect_uri": "https://example.com", "label":
+ "go-client-test", "status": "active", "secret": "45bae57955489bbe751eb3d21c3a462c9b37d615accbc14f056a91b267e6ce0e",
"thumbnail_url": null, "public": true}'
headers:
Access-Control-Allow-Credentials:
@@ -28,6 +28,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -39,7 +41,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 17 Jun 2024 19:45:25 GMT
+ - Thu, 25 Jul 2024 17:44:07 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -54,7 +56,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -75,13 +80,9 @@ interactions:
url: https://api.linode.com/v4beta/account/oauth-clients?page=1
method: GET
response:
- body: '{"data": [{"id": "644f910542377876eaab", "redirect_uri": "https://localhost",
- "label": "asd", "status": "active", "secret": "", "thumbnail_url":
- null, "public": false}, {"id": "8839550c17ba6c006e90", "redirect_uri": "http://localhost:5000/auth_callback",
- "label": "sdf", "status": "active", "secret": "", "thumbnail_url":
- null, "public": false}, {"id": "4a48ff5903b62d743bf0", "redirect_uri": "https://example.com",
+ body: '{"data": [{"id": "e4b5214e8826a1cac065", "redirect_uri": "https://example.com",
"label": "go-client-test", "status": "active", "secret": "", "thumbnail_url":
- null, "public": true}], "page": 1, "pages": 1, "results": 3}'
+ null, "public": true}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -93,18 +94,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "584"
+ - "228"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 17 Jun 2024 19:45:26 GMT
+ - Thu, 25 Jul 2024 17:44:07 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -120,7 +123,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -138,7 +144,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/account/oauth-clients/4a48ff5903b62d743bf0
+ url: https://api.linode.com/v4beta/account/oauth-clients/e4b5214e8826a1cac065
method: DELETE
response:
body: '{}'
@@ -153,6 +159,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -164,7 +172,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 17 Jun 2024 19:45:26 GMT
+ - Thu, 25 Jul 2024 17:44:07 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -179,7 +187,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestPayment_GetFound.yaml b/test/integration/fixtures/TestPayment_GetFound.yaml
index 8e1474f7d..db85adec3 100644
--- a/test/integration/fixtures/TestPayment_GetFound.yaml
+++ b/test/integration/fixtures/TestPayment_GetFound.yaml
@@ -15,7 +15,7 @@ interactions:
method: GET
response:
body: '{"data": [{"id": 12065587, "date": "2018-01-02T03:04:05", "usd": 25.0}],
- "page": 1, "pages": 1, "results": 1}'
+ "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -38,7 +38,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 17 Jun 2024 19:36:20 GMT
+ - Thu, 25 Jul 2024 17:42:30 GMT
Pragma:
- no-cache
Strict-Transport-Security:
diff --git a/test/integration/fixtures/TestPayment_GetMissing.yaml b/test/integration/fixtures/TestPayment_GetMissing.yaml
index a57a9d6f2..b552a37fa 100644
--- a/test/integration/fixtures/TestPayment_GetMissing.yaml
+++ b/test/integration/fixtures/TestPayment_GetMissing.yaml
@@ -1,45 +1,54 @@
---
version: 1
interactions:
- - request:
- body: ""
- form: {}
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/account/payments/-1
- method: GET
- response:
- body: '{"errors": [{"reason": "Not found"}]}'
- 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:
- - '*'
- Cache-Control:
- - private, max-age=0, s-maxage=0, no-cache, no-store
- Content-Length:
- - "37"
- Content-Type:
- - application/json
- Server:
- - nginx
- Vary:
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - account:read_only
- X-Frame-Options:
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "800"
- status: 404 Not Found
- code: 404
- duration: ""
\ No newline at end of file
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/account/payments/-1
+ method: GET
+ response:
+ body: '{"errors": [{"reason": "Not found"}]}'
+ 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:
+ - '*'
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "37"
+ Content-Type:
+ - application/json
+ Expires:
+ - Thu, 25 Jul 2024 17:44:07 GMT
+ Pragma:
+ - no-cache
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - account:read_only
+ X-Frame-Options:
+ - DENY
+ X-Oauth-Scopes:
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
+ X-Ratelimit-Limit:
+ - "400"
+ status: 404 Not Found
+ code: 404
+ duration: ""
diff --git a/test/integration/fixtures/TestPayments_List.yaml b/test/integration/fixtures/TestPayments_List.yaml
index acaae8383..19b47d81d 100644
--- a/test/integration/fixtures/TestPayments_List.yaml
+++ b/test/integration/fixtures/TestPayments_List.yaml
@@ -1,64 +1,64 @@
---
version: 1
interactions:
-- request:
- body: ""
- form: {}
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/account/payments?page=1
- method: GET
- response:
- body: '{"data": [{"id": 12065587, "date": "2018-01-02T03:04:05", "usd": 25.0}],
+ - request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/account/payments?page=1
+ method: GET
+ response:
+ body: '{"data": [{"id": 12065587, "date": "2018-01-02T03:04:05", "usd": 25.0}],
"page": 1, "pages": 1, "results": 1}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "49"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Mon, 17 Jun 2024 19:44:27 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - account:read_only
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "49"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Mon, 17 Jun 2024 19:44:27 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - account:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "400"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
\ No newline at end of file
diff --git a/test/integration/fixtures/TestUserGrants_Update.yaml b/test/integration/fixtures/TestUserGrants_Update.yaml
index 4657aba54..01d70d8e4 100644
--- a/test/integration/fixtures/TestUserGrants_Update.yaml
+++ b/test/integration/fixtures/TestUserGrants_Update.yaml
@@ -28,6 +28,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -39,7 +41,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 13 Feb 2024 19:39:30 GMT
+ - Thu, 25 Jul 2024 17:44:10 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -54,7 +56,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -75,22 +80,41 @@ interactions:
url: https://api.linode.com/v4beta/account/users/linodegotest-updateusergrants/grants
method: PUT
response:
- body: '{"linode": [{"id": 54772819, "label": "test-instance", "permissions": null},
- {"id": 54779923, "label": "test-instance-2", "permissions": null}], "nodebalancer":
- [], "domain": [], "stackscript": [{"id": 1173356, "label": "foo", "permissions":
- null}], "longview": [], "image": [], "volume": [], "firewall": [{"id": 346984,
- "label": "cool-firewall", "permissions": null}], "database": [{"id": 522, "label":
- "scalegridgoestojapanpt2", "permissions": null}, {"id": 6806, "label": "tf_test-6495208472049336246",
- "permissions": null}, {"id": 6807, "label": "tf_test-6874476732250362643", "permissions":
- null}, {"id": 6808, "label": "tf_test-3486893335994149933", "permissions": null},
- {"id": 22775, "label": "IntTestSDK_1686065805updatedSQLDB", "permissions": null}],
- "vpc": [{"id": 21774, "label": "test", "permissions": null}, {"id": 21790, "label":
- "1707494018673859000label", "permissions": null}, {"id": 21791, "label": "1707494037856246000label",
- "permissions": null}, {"id": 21795, "label": "test-vpc", "permissions": null},
- {"id": 21804, "label": "1707497046369793000label", "permissions": null}], "global":
- {"add_volumes": true, "add_databases": true, "add_stackscripts": true, "add_domains":
- false, "add_images": true, "add_firewalls": true, "longview_subscription": false,
- "add_longview": true, "add_vpcs": false, "add_nodebalancers": false, "add_linodes":
+ body: '{"linode": [{"id": 54748754, "label": "debian-us-ord", "permissions": null},
+ {"id": 57328123, "label": "debian-us-central", "permissions": null}, {"id":
+ 60472044, "label": "linode60472044", "permissions": null}, {"id": 60939824,
+ "label": "ansible-test-471035164-updated", "permissions": null}, {"id": 61839386,
+ "label": "test-image-gen2", "permissions": null}, {"id": 61871792, "label":
+ "lke204599-296511-1ecf32b90000", "permissions": null}, {"id": 61871793, "label":
+ "lke204599-296511-5a5a335d0000", "permissions": null}, {"id": 61871794, "label":
+ "lke204599-296511-38c081dd0000", "permissions": null}], "nodebalancer": [{"id":
+ 600437, "label": "ansible-test-585459311", "permissions": null}], "domain":
+ [{"id": 2956594, "label": "example.clone-1713285844751924000-IntTestSDK.org",
+ "permissions": null}], "stackscript": [{"id": 1338923, "label": "test-stackscript",
+ "permissions": null}, {"id": 1424120, "label": "debian12-kube-8138f8e63a05",
+ "permissions": null}, {"id": 1424121, "label": "debian12-kube-8138f8e63a05",
+ "permissions": null}], "longview": [], "image": [{"id": 26425827, "label": "test_1721924280886354",
+ "permissions": null}, {"id": 26426164, "label": "test_1721925185088324", "permissions":
+ null}], "volume": [{"id": 1527342, "label": "ansible-test-563202246", "permissions":
+ null}], "firewall": [{"id": 433514, "label": "test-fw", "permissions": null},
+ {"id": 624183, "label": "e2e-firewall-izUKXM", "permissions": null}, {"id":
+ 624308, "label": "e2e-firewall-svVoqB", "permissions": null}, {"id": 682410,
+ "label": "e2e-firewall-bucVPC", "permissions": null}, {"id": 682453, "label":
+ "e2e-firewall-WJsukx", "permissions": null}, {"id": 682477, "label": "e2e-firewall-IzEjvH",
+ "permissions": null}, {"id": 682500, "label": "e2e-firewall-QdxDkS", "permissions":
+ null}, {"id": 682505, "label": "e2e-firewall-KkroRq", "permissions": null},
+ {"id": 682508, "label": "e2e-firewall-WPxzQk", "permissions": null}, {"id":
+ 682532, "label": "e2e-firewall-rBZhHt", "permissions": null}, {"id": 692740,
+ "label": "cloudfw-1721926678901029000", "permissions": null}, {"id": 692760,
+ "label": "cloudfw-1721927227347144000", "permissions": null}, {"id": 692763,
+ "label": "cloudfw-1721927316071520000", "permissions": null}, {"id": 692848,
+ "label": "cloudfw-1721929346146739000", "permissions": null}, {"id": 692854,
+ "label": "cloudfw-1721929441971780000", "permissions": null}], "database": [],
+ "vpc": [{"id": 41184, "label": "test-vpc", "permissions": null}, {"id": 56469,
+ "label": "my-vpc", "permissions": null}], "global": {"add_volumes": true, "add_images":
+ true, "add_stackscripts": true, "add_firewalls": true, "add_linodes": false,
+ "add_nodebalancers": false, "add_vpcs": false, "longview_subscription": false,
+ "add_databases": true, "add_longview": true, "child_account_access": null, "add_domains":
false, "account_access": "read_only", "cancel_account": false}}'
headers:
Access-Control-Allow-Credentials:
@@ -103,6 +127,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -112,7 +138,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 13 Feb 2024 19:39:31 GMT
+ - Thu, 25 Jul 2024 17:44:10 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -128,7 +154,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -161,6 +190,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -172,7 +203,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 13 Feb 2024 19:39:31 GMT
+ - Thu, 25 Jul 2024 17:44:10 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -187,7 +218,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestUserGrants_UpdateNoAccess.yaml b/test/integration/fixtures/TestUserGrants_UpdateNoAccess.yaml
index 2bfad674f..a8bf5df74 100644
--- a/test/integration/fixtures/TestUserGrants_UpdateNoAccess.yaml
+++ b/test/integration/fixtures/TestUserGrants_UpdateNoAccess.yaml
@@ -28,6 +28,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -39,7 +41,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 13 Feb 2024 19:39:32 GMT
+ - Thu, 25 Jul 2024 17:44:11 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -54,7 +56,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -75,23 +80,42 @@ interactions:
url: https://api.linode.com/v4beta/account/users/linodegotest-updateusergrantsna/grants
method: PUT
response:
- body: '{"linode": [{"id": 54772819, "label": "test-instance", "permissions": null},
- {"id": 54779923, "label": "test-instance-2", "permissions": null}], "nodebalancer":
- [], "domain": [], "stackscript": [{"id": 1173356, "label": "foo", "permissions":
- null}], "longview": [], "image": [], "volume": [], "firewall": [{"id": 346984,
- "label": "cool-firewall", "permissions": null}], "database": [{"id": 522, "label":
- "scalegridgoestojapanpt2", "permissions": null}, {"id": 6806, "label": "tf_test-6495208472049336246",
- "permissions": null}, {"id": 6807, "label": "tf_test-6874476732250362643", "permissions":
- null}, {"id": 6808, "label": "tf_test-3486893335994149933", "permissions": null},
- {"id": 22775, "label": "IntTestSDK_1686065805updatedSQLDB", "permissions": null}],
- "vpc": [{"id": 21774, "label": "test", "permissions": null}, {"id": 21790, "label":
- "1707494018673859000label", "permissions": null}, {"id": 21791, "label": "1707494037856246000label",
- "permissions": null}, {"id": 21795, "label": "test-vpc", "permissions": null},
- {"id": 21804, "label": "1707497046369793000label", "permissions": null}], "global":
- {"add_databases": false, "add_nodebalancers": false, "add_volumes": false, "add_firewalls":
- false, "add_longview": false, "add_domains": false, "add_linodes": false, "add_vpcs":
- false, "add_images": false, "add_stackscripts": false, "longview_subscription":
- false, "account_access": null, "cancel_account": false}}'
+ body: '{"linode": [{"id": 54748754, "label": "debian-us-ord", "permissions": null},
+ {"id": 57328123, "label": "debian-us-central", "permissions": null}, {"id":
+ 60472044, "label": "linode60472044", "permissions": null}, {"id": 60939824,
+ "label": "ansible-test-471035164-updated", "permissions": null}, {"id": 61839386,
+ "label": "test-image-gen2", "permissions": null}, {"id": 61871792, "label":
+ "lke204599-296511-1ecf32b90000", "permissions": null}, {"id": 61871793, "label":
+ "lke204599-296511-5a5a335d0000", "permissions": null}, {"id": 61871794, "label":
+ "lke204599-296511-38c081dd0000", "permissions": null}], "nodebalancer": [{"id":
+ 600437, "label": "ansible-test-585459311", "permissions": null}], "domain":
+ [{"id": 2956594, "label": "example.clone-1713285844751924000-IntTestSDK.org",
+ "permissions": null}], "stackscript": [{"id": 1338923, "label": "test-stackscript",
+ "permissions": null}, {"id": 1424120, "label": "debian12-kube-8138f8e63a05",
+ "permissions": null}, {"id": 1424121, "label": "debian12-kube-8138f8e63a05",
+ "permissions": null}], "longview": [], "image": [{"id": 26425827, "label": "test_1721924280886354",
+ "permissions": null}, {"id": 26426164, "label": "test_1721925185088324", "permissions":
+ null}], "volume": [{"id": 1527342, "label": "ansible-test-563202246", "permissions":
+ null}], "firewall": [{"id": 433514, "label": "test-fw", "permissions": null},
+ {"id": 624183, "label": "e2e-firewall-izUKXM", "permissions": null}, {"id":
+ 624308, "label": "e2e-firewall-svVoqB", "permissions": null}, {"id": 682410,
+ "label": "e2e-firewall-bucVPC", "permissions": null}, {"id": 682453, "label":
+ "e2e-firewall-WJsukx", "permissions": null}, {"id": 682477, "label": "e2e-firewall-IzEjvH",
+ "permissions": null}, {"id": 682500, "label": "e2e-firewall-QdxDkS", "permissions":
+ null}, {"id": 682505, "label": "e2e-firewall-KkroRq", "permissions": null},
+ {"id": 682508, "label": "e2e-firewall-WPxzQk", "permissions": null}, {"id":
+ 682532, "label": "e2e-firewall-rBZhHt", "permissions": null}, {"id": 692740,
+ "label": "cloudfw-1721926678901029000", "permissions": null}, {"id": 692760,
+ "label": "cloudfw-1721927227347144000", "permissions": null}, {"id": 692763,
+ "label": "cloudfw-1721927316071520000", "permissions": null}, {"id": 692848,
+ "label": "cloudfw-1721929346146739000", "permissions": null}, {"id": 692854,
+ "label": "cloudfw-1721929441971780000", "permissions": null}], "database": [],
+ "vpc": [{"id": 41184, "label": "test-vpc", "permissions": null}, {"id": 56469,
+ "label": "my-vpc", "permissions": null}], "global": {"add_volumes": false, "add_images":
+ false, "add_stackscripts": false, "add_firewalls": false, "add_linodes": false,
+ "add_nodebalancers": false, "add_vpcs": false, "longview_subscription": false,
+ "add_databases": false, "add_longview": false, "child_account_access": null,
+ "add_domains": false, "account_access": null, "cancel_account": false}}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -103,6 +127,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -112,7 +138,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 13 Feb 2024 19:39:32 GMT
+ - Thu, 25 Jul 2024 17:44:11 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -128,7 +154,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -161,6 +190,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -172,7 +203,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 13 Feb 2024 19:39:32 GMT
+ - Thu, 25 Jul 2024 17:44:11 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -187,7 +218,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestUser_Get.yaml b/test/integration/fixtures/TestUser_Get.yaml
index c1e68c9a5..9afeac43a 100644
--- a/test/integration/fixtures/TestUser_Get.yaml
+++ b/test/integration/fixtures/TestUser_Get.yaml
@@ -28,16 +28,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
Content-Length:
- "240"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:13 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -50,7 +56,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -85,17 +94,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=0, s-maxage=0, no-cache, no-store
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
Content-Length:
- "240"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:13 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -109,7 +123,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -142,16 +159,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:14 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -164,7 +187,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestUser_GetMissing.yaml b/test/integration/fixtures/TestUser_GetMissing.yaml
index 193b11514..2fedb2839 100644
--- a/test/integration/fixtures/TestUser_GetMissing.yaml
+++ b/test/integration/fixtures/TestUser_GetMissing.yaml
@@ -22,14 +22,20 @@ interactions:
- HEAD, GET, OPTIONS, POST, PUT, DELETE
Access-Control-Allow-Origin:
- '*'
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:12 GMT
+ Pragma:
+ - no-cache
Vary:
- Authorization, X-Filter
X-Accepted-Oauth-Scopes:
@@ -37,7 +43,10 @@ interactions:
X-Frame-Options:
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
status: 404 Not Found
diff --git a/test/integration/fixtures/TestUser_Update.yaml b/test/integration/fixtures/TestUser_Update.yaml
index 3bfffc8c7..be001457b 100644
--- a/test/integration/fixtures/TestUser_Update.yaml
+++ b/test/integration/fixtures/TestUser_Update.yaml
@@ -28,16 +28,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
Content-Length:
- "247"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:15 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -50,7 +56,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -85,16 +94,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:15 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -107,7 +122,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -140,16 +158,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:15 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -162,7 +186,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestUsers_List.yaml b/test/integration/fixtures/TestUsers_List.yaml
index 45ea0bc1c..695ccba29 100644
--- a/test/integration/fixtures/TestUsers_List.yaml
+++ b/test/integration/fixtures/TestUsers_List.yaml
@@ -28,16 +28,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
Content-Length:
- "243"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 25 Jul 2024 17:44:17 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -50,7 +56,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -71,14 +80,89 @@ interactions:
url: https://api.linode.com/v4beta/account/users?page=1
method: GET
response:
- body: '{"data": [{"username": "ErikZilber", "email": "ezilber@akamai.com", "restricted":
- false, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number": "+11234567890",
+ body: '{"data": [{"username": "ychen123", "email": "yechen@akamai.com", "restricted":
+ false, "ssh_keys": ["foo"], "tfa_enabled": true, "verified_phone_number": "+11234567890",
"password_created": "2018-01-02T03:04:05", "last_login": {"login_datetime":
"2018-01-02T03:04:05", "status": "successful"}, "user_type": "default"}, {"username":
- "linodegotest-listuser", "email": "linodegotest-listuser@example.com", "restricted":
- false, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number": null,
- "password_created": null, "last_login": null, "user_type": "default"}], "page":
- 1, "pages": 1, "results": 2}'
+ "tf-test-8125004655895970073", "email": "tf-test-8125004655895970073@example.com",
+ "restricted": true, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-3780767100546130489", "email": "tf-test-3780767100546130489@example.com",
+ "restricted": false, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-2299707981995340093", "email": "tf-test-2299707981995340093@example.com",
+ "restricted": true, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-2147684760611667834", "email": "tf-test-2147684760611667834@example.com",
+ "restricted": true, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-5507871777906426864", "email": "tf-test-5507871777906426864@example.com",
+ "restricted": false, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-4243868853498240525", "email": "tf-test-4243868853498240525@example.com",
+ "restricted": true, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-6871414574593889029", "email": "tf-test-6871414574593889029@example.com",
+ "restricted": true, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-2519132488096826016", "email": "tf-test-2519132488096826016@example.com",
+ "restricted": true, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-969942227562349701", "email": "tf-test-969942227562349701@example.com",
+ "restricted": true, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-2446821540606644016", "email": "tf-test-2446821540606644016@example.com",
+ "restricted": true, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-9178641674671843035", "email": "tf-test-9178641674671843035@example.com",
+ "restricted": true, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-3624347175135644429", "email": "tf-test-3624347175135644429@example.com",
+ "restricted": true, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-6953009986395160284", "email": "tf-test-6953009986395160284@example.com",
+ "restricted": true, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-1532592034131405740", "email": "tf-test-1532592034131405740@example.com",
+ "restricted": true, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-4125167084682567855", "email": "tf-test-4125167084682567855@example.com",
+ "restricted": true, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-8814960275226187779", "email": "tf-test-8814960275226187779@example.com",
+ "restricted": true, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-2481363777634915585", "email": "tf-test-2481363777634915585@example.com",
+ "restricted": true, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-8271719396887279775", "email": "tf-test-8271719396887279775@example.com",
+ "restricted": true, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-7182869575920600289", "email": "tf-test-7182869575920600289@example.com",
+ "restricted": true, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-2377037076663955215", "email": "tf-test-2377037076663955215@example.com",
+ "restricted": true, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-4723681129312005021", "email": "tf-test-4723681129312005021@example.com",
+ "restricted": true, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-4502584305220713881", "email": "tf-test-4502584305220713881@example.com",
+ "restricted": true, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-6840263186492004427", "email": "tf-test-6840263186492004427@example.com",
+ "restricted": false, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-4734570691858190370", "email": "tf-test-4734570691858190370@example.com",
+ "restricted": true, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "tf-test-1973126705199777758", "email": "tf-test-1973126705199777758@example.com",
+ "restricted": true, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"},
+ {"username": "linodegotest-listuser", "email": "linodegotest-listuser@example.com",
+ "restricted": false, "ssh_keys": [], "tfa_enabled": false, "verified_phone_number":
+ null, "password_created": null, "last_login": null, "user_type": "default"}],
+ "page": 1, "pages": 1, "results": 27}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -90,21 +174,26 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=0, s-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:
+ - Thu, 25 Jul 2024 17:44:17 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- - Accept-Encoding
- Authorization, X-Filter
- Authorization, X-Filter
+ - Accept-Encoding
X-Accepted-Oauth-Scopes:
- account:read_only
X-Content-Type-Options:
@@ -113,7 +202,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -146,16 +238,22 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
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:
+ - Thu, 25 Jul 2024 17:44:17 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -168,7 +266,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestVLANs_GetIPAMAddress.yaml b/test/integration/fixtures/TestVLANs_GetIPAMAddress.yaml
index 592c6ebac..7783672d8 100644
--- a/test/integration/fixtures/TestVLANs_GetIPAMAddress.yaml
+++ b/test/integration/fixtures/TestVLANs_GetIPAMAddress.yaml
@@ -17,43 +17,44 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"],
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
"status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
@@ -64,96 +65,98 @@ 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": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"],
- "status": "ok", "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20,
- 172.232.128.22, 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18,
- 172.232.128.21, 172.232.128.27", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,46 +166,72 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
@@ -210,7 +239,7 @@ interactions:
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":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
@@ -218,7 +247,7 @@ interactions:
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,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
"maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
"Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
@@ -227,7 +256,7 @@ interactions:
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,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
"maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
@@ -236,7 +265,7 @@ interactions:
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":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
"gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
@@ -245,7 +274,7 @@ interactions:
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",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
"label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
@@ -254,25 +283,25 @@ interactions:
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",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
"label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "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,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
+ 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
+ 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}], "page": 1, "pages":
- 1, "results": 27}'
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -295,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 18:30:57 GMT
+ - Thu, 25 Jul 2024 18:50:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -312,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -321,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-ins-test-ipam","root_pass":"4|s9`hN2SrZLEfL^68dAIbY2i$6Dd{9\u003c\u003c$Yw37]''[\u003ef~7NqEvJx^y6E;0\u003cC816qz","image":"linode/debian9","interfaces":[{"ipam_address":"10.0.0.1/24","label":"go-vlan-test-ipam","purpose":"vlan"}],"firewall_id":653317,"booted":true}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-ins-test-ipam","root_pass":"@6Pm0e1k8X`;8n$-2''lh}uSj.31{F1/Es9yzv]:5''SV.VVz82k8OG+I]87ePHCQj","image":"linode/debian9","interfaces":[{"ipam_address":"10.0.0.1/24","label":"go-vlan-test-ipam","purpose":"vlan"}],"firewall_id":693131,"booted":true}'
form: {}
headers:
Accept:
@@ -333,16 +365,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 61338665, "label": "go-ins-test-ipam", "group": "", "status": "provisioning",
+ body: '{"id": 61876248, "label": "go-ins-test-ipam", "group": "", "status": "provisioning",
"created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "type":
- "g6-nanode-1", "ipv4": ["192.46.208.41"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "7c02d8248cd598c0fbe8286e88e0299137474f35", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "g6-nanode-1", "ipv4": ["192.46.210.43"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
+ null, "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled":
+ true, "tags": [], "host_uuid": "0e0c1ef96c34828ce8b53e9e04870191260828c7", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -361,13 +393,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "781"
+ - "802"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 18:30:58 GMT
+ - Thu, 25 Jul 2024 18:50:49 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -382,7 +414,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -400,19 +435,19 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61338665
+ url: https://api.linode.com/v4beta/linode/instances/61876248
method: GET
response:
- body: '{"id": 61338665, "label": "go-ins-test-ipam", "group": "", "status": "provisioning",
+ body: '{"id": 61876248, "label": "go-ins-test-ipam", "group": "", "status": "provisioning",
"created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "type":
- "g6-nanode-1", "ipv4": ["192.46.208.41"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": true, "schedule": {"day": "Scheduling", "window": "Scheduling"},
- "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags":
- [], "host_uuid": "7c02d8248cd598c0fbe8286e88e0299137474f35", "has_user_data":
- false, "placement_group": null, "lke_cluster_id": null}'
+ "g6-nanode-1", "ipv4": ["192.46.210.43"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
+ "Scheduling", "window": "Scheduling"}, "last_successful": null}, "hypervisor":
+ "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "0e0c1ef96c34828ce8b53e9e04870191260828c7",
+ "has_user_data": false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -431,13 +466,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "796"
+ - "818"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 18:31:13 GMT
+ - Thu, 25 Jul 2024 18:51:04 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -453,7 +488,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -471,19 +509,19 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61338665
+ url: https://api.linode.com/v4beta/linode/instances/61876248
method: GET
response:
- body: '{"id": 61338665, "label": "go-ins-test-ipam", "group": "", "status": "provisioning",
+ body: '{"id": 61876248, "label": "go-ins-test-ipam", "group": "", "status": "booting",
"created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "type":
- "g6-nanode-1", "ipv4": ["192.46.208.41"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": true, "schedule": {"day": "Scheduling", "window": "Scheduling"},
- "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags":
- [], "host_uuid": "7c02d8248cd598c0fbe8286e88e0299137474f35", "has_user_data":
- false, "placement_group": null, "lke_cluster_id": null}'
+ "g6-nanode-1", "ipv4": ["192.46.210.43"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
+ "Scheduling", "window": "Scheduling"}, "last_successful": null}, "hypervisor":
+ "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "0e0c1ef96c34828ce8b53e9e04870191260828c7",
+ "has_user_data": false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -502,13 +540,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "796"
+ - "813"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 18:31:28 GMT
+ - Thu, 25 Jul 2024 18:51:19 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -524,7 +562,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -542,19 +583,19 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61338665
+ url: https://api.linode.com/v4beta/linode/instances/61876248
method: GET
response:
- body: '{"id": 61338665, "label": "go-ins-test-ipam", "group": "", "status": "running",
+ body: '{"id": 61876248, "label": "go-ins-test-ipam", "group": "", "status": "running",
"created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "type":
- "g6-nanode-1", "ipv4": ["192.46.208.41"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": true, "schedule": {"day": "Scheduling", "window": "Scheduling"},
- "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags":
- [], "host_uuid": "7c02d8248cd598c0fbe8286e88e0299137474f35", "has_user_data":
- false, "placement_group": null, "lke_cluster_id": null}'
+ "g6-nanode-1", "ipv4": ["192.46.210.43"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
+ "Scheduling", "window": "Scheduling"}, "last_successful": null}, "hypervisor":
+ "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "0e0c1ef96c34828ce8b53e9e04870191260828c7",
+ "has_user_data": false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -573,13 +614,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "791"
+ - "813"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 18:31:43 GMT
+ - Thu, 25 Jul 2024 18:51:34 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -595,7 +636,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -615,17 +659,17 @@ interactions:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- '{"interfaces":"go-vlan-test-ipam"}'
- url: https://api.linode.com/v4beta/linode/instances/61338665/configs?page=1
+ url: https://api.linode.com/v4beta/linode/instances/61876248/configs?page=1
method: GET
response:
- body: '{"data": [{"id": 64558131, "label": "My Debian 9 Disk Profile", "helpers":
+ body: '{"data": [{"id": 65096772, "label": "My Debian 9 Disk Profile", "helpers":
{"updatedb_disabled": true, "distro": true, "modules_dep": true, "network":
- true, "devtmpfs_automount": true}, "kernel": "linode/grub2", "comments": "",
+ false, "devtmpfs_automount": true}, "kernel": "linode/grub2", "comments": "",
"memory_limit": 0, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "root_device": "/dev/sda", "devices": {"sda": {"disk_id": 120510225, "volume_id":
- null}, "sdb": {"disk_id": 120510226, "volume_id": null}, "sdc": null, "sdd":
+ "root_device": "/dev/sda", "devices": {"sda": {"disk_id": 121427422, "volume_id":
+ null}, "sdb": {"disk_id": 121427423, "volume_id": null}, "sdc": null, "sdd":
null, "sde": null, "sdf": null, "sdg": null, "sdh": null}, "initrd": null, "run_level":
- "default", "virt_mode": "paravirt", "interfaces": [{"id": 1953278, "purpose":
+ "default", "virt_mode": "paravirt", "interfaces": [{"id": 2048097, "purpose":
"vlan", "primary": false, "active": true, "ipam_address": "10.0.0.1/24", "label":
"go-vlan-test-ipam", "vpc_id": null, "subnet_id": null, "ipv4": null, "ipv6":
null, "ip_ranges": null}]}], "page": 1, "pages": 1, "results": 1}'
@@ -651,7 +695,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 18:31:43 GMT
+ - Thu, 25 Jul 2024 18:51:34 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -668,7 +712,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -686,7 +733,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61338665
+ url: https://api.linode.com/v4beta/linode/instances/61876248
method: DELETE
response:
body: '{}'
@@ -714,7 +761,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 18:31:44 GMT
+ - Thu, 25 Jul 2024 18:51:35 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -729,7 +776,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestVLANs_List.yaml b/test/integration/fixtures/TestVLANs_List.yaml
index 6315d1d4e..bfd9d497f 100644
--- a/test/integration/fixtures/TestVLANs_List.yaml
+++ b/test/integration/fixtures/TestVLANs_List.yaml
@@ -17,43 +17,44 @@ interactions:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
+ 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
+ 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
+ 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
+ "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5,
+ 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"],
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
+ "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
"status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61,
139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66,
139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
@@ -64,96 +65,98 @@ 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": "fr-par", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
"Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23,
+ 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14,
+ 172.232.32.11, 172.232.32.12", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities":
+ ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
+ Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium
+ Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,
+ 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8,
+ 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,
+ 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10,
+ 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
"nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36,
+ 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31,
+ 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"],
- "status": "ok", "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20,
- 172.232.128.22, 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18,
- 172.232.128.21, 172.232.128.27", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
+ 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"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
+ 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
+ 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "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"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
+ "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17,
+ 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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
+ 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
{"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
"Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
"Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
"VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
@@ -163,46 +166,72 @@ 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": "id-cgk", "label":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
"Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
+ null, "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,
+ "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
"ipv6": "1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
+ "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
+ "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
+ "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
+ "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
+ "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
+ "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
+ "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
+ "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
+ "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
+ "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
"label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
@@ -210,7 +239,7 @@ interactions:
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":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
@@ -218,7 +247,7 @@ interactions:
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,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
"maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
"Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
@@ -227,7 +256,7 @@ interactions:
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,
+ 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null,
"maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
"Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
@@ -236,7 +265,7 @@ interactions:
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":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
"gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
@@ -245,7 +274,7 @@ interactions:
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",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
"label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
@@ -254,25 +283,25 @@ interactions:
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",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
"label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
"Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "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,
+ "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
+ 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
+ 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}], "page": 1, "pages":
- 1, "results": 27}'
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
+ "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5,
+ 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}], "page": 1, "pages": 1, "results": 34}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -295,7 +324,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 18:29:53 GMT
+ - Thu, 25 Jul 2024 18:27:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -312,7 +341,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -321,7 +353,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-ins-test-list-0","root_pass":"281CG07@L^m/E=\u003e4oO8480snKo2\u003ePAhm77u\u003e]2F*qV!GsD?^{y-H\u0026zK51)gelNDx","image":"linode/debian9","interfaces":[{"ipam_address":"10.0.0.1/24","label":"go-vlan-test-list","purpose":"vlan"}],"firewall_id":653317,"booted":true}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-ins-test-list-0","root_pass":"lO21L5-u2H`i)''*2~$-AXyC!q89)^EN\u003em;ey~6vy\u003eIt9TiRs-5eG460In5R3qD4Y","image":"linode/debian9","interfaces":[{"ipam_address":"10.0.0.1/24","label":"go-vlan-test-list","purpose":"vlan"}],"firewall_id":693021,"booted":true}'
form: {}
headers:
Accept:
@@ -333,16 +365,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 61338628, "label": "go-ins-test-list-0", "group": "", "status":
+ body: '{"id": 61875475, "label": "go-ins-test-list-0", "group": "", "status":
"provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.53.164"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "7c02d8248cd598c0fbe8286e88e0299137474f35", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["139.144.1.65"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
+ null, "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled":
+ true, "tags": [], "host_uuid": "0be889ff8efab8e9f1cbbb28b1799aa440e95149", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -361,13 +393,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "784"
+ - "803"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 18:29:54 GMT
+ - Thu, 25 Jul 2024 18:27:34 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -382,7 +414,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -391,7 +426,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-ins-test-list-1","root_pass":"24)5/6qYTDR3^)WMK`pb9UtIZ7O8a3c0^hQc2c''\u003ckc8(@8UL*VrxvCeo?^4\u003e14/[","image":"linode/debian9","interfaces":[{"ipam_address":"10.0.0.1/24","label":"go-vlan-test-list","purpose":"vlan"}],"firewall_id":653317,"booted":true}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-ins-test-list-1","root_pass":"RT.M80/4r8=599k5q00IA\\j9''Vp[OqV5U};9NvhKbn=F+i7\u0026.ljr@|LuV0X,rF{8","image":"linode/debian9","interfaces":[{"ipam_address":"10.0.0.1/24","label":"go-vlan-test-list","purpose":"vlan"}],"firewall_id":693021,"booted":true}'
form: {}
headers:
Accept:
@@ -403,16 +438,16 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 61338629, "label": "go-ins-test-list-1", "group": "", "status":
+ body: '{"id": 61875477, "label": "go-ins-test-list-1", "group": "", "status":
"provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.53.195"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": null, "window": null}, "last_successful":
- null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags": [], "host_uuid":
- "1264a03cb72812034697c13e764ad94a0dabc6fa", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["139.144.1.131"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
+ null, "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled":
+ true, "tags": [], "host_uuid": "8aca7a754c37f5b4e94afd4a43d57ad2c7090730", "has_user_data":
+ false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -431,13 +466,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "784"
+ - "804"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 18:29:55 GMT
+ - Thu, 25 Jul 2024 18:27:35 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -452,7 +487,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "10"
X-Xss-Protection:
@@ -470,19 +508,19 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61338628
+ url: https://api.linode.com/v4beta/linode/instances/61875475
method: GET
response:
- body: '{"id": 61338628, "label": "go-ins-test-list-0", "group": "", "status":
+ body: '{"id": 61875475, "label": "go-ins-test-list-0", "group": "", "status":
"provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.53.164"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": "Scheduling", "window": "Scheduling"},
- "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags":
- [], "host_uuid": "7c02d8248cd598c0fbe8286e88e0299137474f35", "has_user_data":
- false, "placement_group": null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["139.144.1.65"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
+ "Scheduling", "window": "Scheduling"}, "last_successful": null}, "hypervisor":
+ "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "0be889ff8efab8e9f1cbbb28b1799aa440e95149",
+ "has_user_data": false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -501,13 +539,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "800"
+ - "819"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 18:30:10 GMT
+ - Thu, 25 Jul 2024 18:27:50 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -523,7 +561,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -541,19 +582,19 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61338628
+ url: https://api.linode.com/v4beta/linode/instances/61875475
method: GET
response:
- body: '{"id": 61338628, "label": "go-ins-test-list-0", "group": "", "status":
+ body: '{"id": 61875475, "label": "go-ins-test-list-0", "group": "", "status":
"booting", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.53.164"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": "Scheduling", "window": "Scheduling"},
- "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags":
- [], "host_uuid": "7c02d8248cd598c0fbe8286e88e0299137474f35", "has_user_data":
- false, "placement_group": null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["139.144.1.65"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
+ "Scheduling", "window": "Scheduling"}, "last_successful": null}, "hypervisor":
+ "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "0be889ff8efab8e9f1cbbb28b1799aa440e95149",
+ "has_user_data": false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -572,13 +613,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "795"
+ - "814"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 18:30:25 GMT
+ - Thu, 25 Jul 2024 18:28:05 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -594,7 +635,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -612,19 +656,19 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61338628
+ url: https://api.linode.com/v4beta/linode/instances/61875475
method: GET
response:
- body: '{"id": 61338628, "label": "go-ins-test-list-0", "group": "", "status":
+ body: '{"id": 61875475, "label": "go-ins-test-list-0", "group": "", "status":
"running", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.53.164"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": "Scheduling", "window": "Scheduling"},
- "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags":
- [], "host_uuid": "7c02d8248cd598c0fbe8286e88e0299137474f35", "has_user_data":
- false, "placement_group": null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["139.144.1.65"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
+ "Scheduling", "window": "Scheduling"}, "last_successful": null}, "hypervisor":
+ "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "0be889ff8efab8e9f1cbbb28b1799aa440e95149",
+ "has_user_data": false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -643,13 +687,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "795"
+ - "814"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 18:30:40 GMT
+ - Thu, 25 Jul 2024 18:28:20 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -665,7 +709,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -683,19 +730,19 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61338629
+ url: https://api.linode.com/v4beta/linode/instances/61875477
method: GET
response:
- body: '{"id": 61338629, "label": "go-ins-test-list-1", "group": "", "status":
+ body: '{"id": 61875477, "label": "go-ins-test-list-1", "group": "", "status":
"running", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.53.195"], "ipv6": "1234::5678/128",
- "image": "linode/debian9", "region": "ap-west", "specs": {"disk": 25600, "memory":
- 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in":
- 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled":
- true, "available": false, "schedule": {"day": "Scheduling", "window": "Scheduling"},
- "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": true, "tags":
- [], "host_uuid": "1264a03cb72812034697c13e764ad94a0dabc6fa", "has_user_data":
- false, "placement_group": null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["139.144.1.131"], "ipv6": "1234::5678/128",
+ "image": "linode/debian9", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts":
+ {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io":
+ 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day":
+ "Scheduling", "window": "Scheduling"}, "last_successful": null}, "hypervisor":
+ "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "8aca7a754c37f5b4e94afd4a43d57ad2c7090730",
+ "has_user_data": false, "placement_group": null, "lke_cluster_id": null}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -714,13 +761,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "795"
+ - "815"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 18:30:55 GMT
+ - Thu, 25 Jul 2024 18:28:35 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -736,7 +783,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -760,7 +810,7 @@ interactions:
method: GET
response:
body: '{"data": [{"region": "ap-west", "label": "go-vlan-test-list", "linodes":
- [61338628, 61338629], "created": "2018-01-02T03:04:05"}], "page": 1, "pages":
+ [61875475, 61875477], "created": "2018-01-02T03:04:05"}], "page": 1, "pages":
1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -786,7 +836,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 18:30:56 GMT
+ - Thu, 25 Jul 2024 18:28:35 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -802,7 +852,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -820,7 +873,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61338629
+ url: https://api.linode.com/v4beta/linode/instances/61875477
method: DELETE
response:
body: '{}'
@@ -848,7 +901,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 18:30:56 GMT
+ - Thu, 25 Jul 2024 18:28:35 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -863,7 +916,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
@@ -881,7 +937,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61338628
+ url: https://api.linode.com/v4beta/linode/instances/61875475
method: DELETE
response:
body: '{}'
@@ -909,7 +965,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 18:30:57 GMT
+ - Thu, 25 Jul 2024 18:28:36 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -924,7 +980,10 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- "400"
X-Xss-Protection:
diff --git a/test/integration/fixtures/TestVolume_Resize.yaml b/test/integration/fixtures/TestVolume_Resize.yaml
index ae54fb38a..79e8a536c 100644
--- a/test/integration/fixtures/TestVolume_Resize.yaml
+++ b/test/integration/fixtures/TestVolume_Resize.yaml
@@ -1,20 +1,20 @@
---
version: 1
interactions:
-- request:
- body: ""
- form: {}
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/regions?page=1
- method: GET
- response:
- body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
+ - request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/regions?page=1
+ method: GET
+ response:
+ body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "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,
@@ -273,307 +273,307 @@ interactions:
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"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Akamai-Internal-Account:
- - '*'
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Thu, 11 Jul 2024 20:00: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:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: '{"label":"go-vol-test-def","region":"ap-west","tags":null}'
- form: {}
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/volumes
- method: POST
- response:
- body: '{"id": 4979055, "status": "creating", "label": "go-vol-test-def", "created":
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Thu, 11 Jul 2024 20:00: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:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "400"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+ - request:
+ body: '{"label":"go-vol-test-def","region":"ap-west","tags":null}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/volumes
+ method: POST
+ response:
+ body: '{"id": 4979055, "status": "creating", "label": "go-vol-test-def", "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "filesystem_path":
"/dev/disk/by-id/scsi-0Linode_Volume_go-vol-test-def", "size": 20, "linode_id":
null, "linode_label": null, "region": "ap-west", "tags": [], "hardware_type":
"nvme"}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Akamai-Internal-Account:
- - '*'
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "318"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Thu, 11 Jul 2024 20:00:35 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - volumes:read_write
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "100"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/volumes/4979055
- method: GET
- response:
- body: '{"id": 4979055, "status": "active", "label": "go-vol-test-def", "created":
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "318"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Thu, 11 Jul 2024 20:00:35 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - volumes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "100"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+ - request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/volumes/4979055
+ method: GET
+ response:
+ body: '{"id": 4979055, "status": "active", "label": "go-vol-test-def", "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "filesystem_path":
"/dev/disk/by-id/scsi-0Linode_Volume_go-vol-test-def", "size": 20, "linode_id":
null, "linode_label": null, "region": "ap-west", "tags": [], "hardware_type":
"nvme"}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Akamai-Internal-Account:
- - '*'
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "316"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Thu, 11 Jul 2024 20:00:50 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - volumes:read_only
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: '{"size":21}'
- form: {}
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/volumes/4979055/resize
- method: POST
- response:
- body: '{"id": 4979055, "status": "resizing", "label": "go-vol-test-def", "created":
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "316"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Thu, 11 Jul 2024 20:00:50 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - volumes:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "400"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+ - request:
+ body: '{"size":21}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/volumes/4979055/resize
+ method: POST
+ response:
+ body: '{"id": 4979055, "status": "resizing", "label": "go-vol-test-def", "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "filesystem_path":
"/dev/disk/by-id/scsi-0Linode_Volume_go-vol-test-def", "size": 21, "linode_id":
null, "linode_label": null, "region": "ap-west", "tags": [], "hardware_type":
"nvme"}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Akamai-Internal-Account:
- - '*'
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "318"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Thu, 11 Jul 2024 20:00:50 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - volumes:read_write
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/volumes/4979055
- method: DELETE
- response:
- body: '{}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Akamai-Internal-Account:
- - '*'
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "2"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Thu, 11 Jul 2024 20:00:55 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - volumes:read_write
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "318"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Thu, 11 Jul 2024 20:00:50 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - volumes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "400"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+ - request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/volumes/4979055
+ method: DELETE
+ response:
+ body: '{}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "2"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Thu, 11 Jul 2024 20:00:55 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - volumes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "400"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
diff --git a/test/integration/images_test.go b/test/integration/images_test.go
index 785531d13..a0f85458a 100644
--- a/test/integration/images_test.go
+++ b/test/integration/images_test.go
@@ -3,8 +3,12 @@ package integration
import (
"bytes"
"context"
+ "slices"
"testing"
+ "github.com/stretchr/testify/assert"
+ "github.com/stretchr/testify/require"
+
"github.com/dnaeon/go-vcr/recorder"
. "github.com/linode/linodego"
)
@@ -107,10 +111,12 @@ func TestImage_CreateUpload(t *testing.T) {
defer teardown()
image, uploadURL, err := client.CreateImageUpload(context.Background(), ImageCreateUploadOptions{
- Region: getRegionsWithCaps(t, client, []string{"Metadata"})[0],
+ Region: getRegionsWithCaps(t, client, []string{"Metadata"})[0],
+
Label: "linodego-image-create-upload",
Description: "An image that does stuff.",
CloudInit: true,
+ Tags: &[]string{"foo", "bar"},
})
if err != nil {
t.Errorf("Failed to create image upload: %v", err)
@@ -126,6 +132,8 @@ func TestImage_CreateUpload(t *testing.T) {
if uploadURL == "" {
t.Errorf("Expected upload URL, got none")
}
+
+ require.NotNil(t, image.Tags)
}
func TestImage_CloudInit(t *testing.T) {
@@ -152,9 +160,10 @@ func TestImage_CloudInit(t *testing.T) {
DiskID: instanceDisks[0].ID,
Label: "linodego-test-cloud-init",
CloudInit: true,
+ Tags: &[]string{"test1", "test2"},
})
if err != nil {
- t.Errorf("Failed to create image upload: %v", err)
+ t.Errorf("Failed to create image: %v", err)
}
t.Cleanup(func() {
if err := client.DeleteImage(context.Background(), image.ID); err != nil {
@@ -163,4 +172,60 @@ func TestImage_CloudInit(t *testing.T) {
})
assertSliceContains(t, image.Capabilities, "cloud-init")
+
+ slices.Sort(image.Tags)
+ require.Equal(t, image.Tags, []string{"test1", "test2"})
+}
+
+func TestImage_Replicate(t *testing.T) {
+ // TODO: use random regions with capabilities once it gets stable
+ availableRegions := []string{"us-east", "eu-west"}
+
+ client, teardown := createTestClient(t, "fixtures/TestImage_Replicate")
+ defer teardown()
+
+ image, uploadURL, err := client.CreateImageUpload(context.Background(), ImageCreateUploadOptions{
+ Region: availableRegions[0],
+ Label: "linodego-image-replication",
+ Description: "An image that does stuff.",
+ })
+ if err != nil {
+ t.Errorf("Failed to create image upload: %v", err)
+ }
+ defer func() {
+ if err := client.DeleteImage(context.Background(), image.ID); err != nil {
+ t.Errorf("Failed to delete image %s: %v", image.ID, err)
+ }
+ }()
+
+ if uploadURL == "" {
+ t.Errorf("Expected upload URL, got none")
+ }
+
+ if _, err := client.WaitForImageStatus(context.Background(), image.ID, ImageStatusPendingUpload, 60); err != nil {
+ t.Errorf("Failed to wait for image pending upload status: %v", err)
+ }
+
+ // Because this request currently bypasses the recorder, we should only run it when the recorder is recording
+ if testingMode != recorder.ModeReplaying {
+ if err := client.UploadImageToURL(context.Background(), uploadURL, bytes.NewReader(testImageBytes)); err != nil {
+ t.Errorf("failed to upload image: %v", err)
+ }
+ }
+
+ if _, err := client.WaitForImageStatus(context.Background(), image.ID, ImageStatusAvailable, 240); err != nil {
+ t.Errorf("Failed to wait for image available upload status: %v", err)
+ }
+
+ replicaRegions := availableRegions
+
+ image, err = client.ReplicateImage(context.Background(), image.ID, ImageReplicateOptions{
+ Regions: replicaRegions,
+ })
+ require.NoError(t, err)
+
+ require.Len(t, image.Regions, len(availableRegions))
+ for _, region := range image.Regions {
+ assert.Contains(t, availableRegions, region.Region)
+ }
}
diff --git a/test/unit/images_test.go b/test/unit/images_test.go
new file mode 100644
index 000000000..d93353844
--- /dev/null
+++ b/test/unit/images_test.go
@@ -0,0 +1,61 @@
+package unit
+
+import (
+ "context"
+ "testing"
+
+ "github.com/jarcoal/httpmock"
+ "github.com/linode/linodego"
+ "github.com/stretchr/testify/require"
+)
+
+func TestImage_Replicate(t *testing.T) {
+ client := createMockClient(t)
+
+ requestData := linodego.ImageReplicateOptions{
+ Regions: []string{
+ "us-mia",
+ "us-ord",
+ },
+ }
+
+ responseData := linodego.Image{
+ ID: "private/1234",
+ Label: "test",
+ Regions: []linodego.ImageRegion{
+ {
+ Region: "us-iad",
+ Status: linodego.ImageRegionStatusAvailable,
+ },
+ {
+ Region: "us-mia",
+ Status: linodego.ImageRegionStatusReplicating,
+ },
+ {
+ Region: "us-ord",
+ Status: linodego.ImageRegionStatusPendingReplication,
+ },
+ },
+ }
+
+ httpmock.RegisterRegexpResponder(
+ "POST",
+ mockRequestURL(t, "images/private%2F1234/regions"),
+ mockRequestBodyValidate(t, requestData, responseData),
+ )
+
+ image, err := client.ReplicateImage(context.Background(), "private/1234", requestData)
+ require.NoError(t, err)
+
+ require.Equal(t, "private/1234", image.ID)
+ require.Equal(t, "test", image.Label)
+
+ require.EqualValues(t, "us-iad", image.Regions[0].Region)
+ require.EqualValues(t, linodego.ImageRegionStatusAvailable, image.Regions[0].Status)
+
+ require.EqualValues(t, "us-mia", image.Regions[1].Region)
+ require.EqualValues(t, linodego.ImageRegionStatusReplicating, image.Regions[1].Status)
+
+ require.EqualValues(t, "us-ord", image.Regions[2].Region)
+ require.EqualValues(t, linodego.ImageRegionStatusPendingReplication, image.Regions[2].Status)
+}
diff --git a/waitfor.go b/waitfor.go
index 0b4d6c7bd..df2f484f7 100644
--- a/waitfor.go
+++ b/waitfor.go
@@ -5,6 +5,7 @@ import (
"fmt"
"log"
"net/http"
+ "slices"
"strconv"
"time"
@@ -442,6 +443,40 @@ func (client Client) WaitForImageStatus(ctx context.Context, imageID string, sta
}
}
+// WaitForImageRegionStatus waits for an Image's replica to reach the desired state
+// before returning.
+func (client Client) WaitForImageRegionStatus(ctx context.Context, imageID, region string, status ImageRegionStatus) (*Image, error) {
+ ticker := time.NewTicker(client.pollInterval)
+ defer ticker.Stop()
+
+ for {
+ select {
+ case <-ticker.C:
+ image, err := client.GetImage(ctx, imageID)
+ if err != nil {
+ return image, err
+ }
+
+ replicaIdx := slices.IndexFunc(
+ image.Regions,
+ func(r ImageRegion) bool {
+ return r.Region == region
+ },
+ )
+
+ // If no replica was found or the status doesn't match, try again
+ if replicaIdx < 0 || image.Regions[replicaIdx].Status != status {
+ continue
+ }
+
+ return image, nil
+
+ case <-ctx.Done():
+ return nil, fmt.Errorf("failed to wait for Image %s status %s: %w", imageID, status, ctx.Err())
+ }
+ }
+}
+
// WaitForMySQLDatabaseBackup waits for the backup with the given label to be available.
func (client Client) WaitForMySQLDatabaseBackup(ctx context.Context, dbID int, label string, timeoutSeconds int) (*MySQLDatabaseBackup, error) {
ctx, cancel := context.WithTimeout(ctx, time.Duration(timeoutSeconds)*time.Second)