diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 8f6584186..420bf1e62 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -80,66 +80,37 @@ jobs:
notify-slack:
runs-on: ubuntu-latest
- needs: [test]
- if: ${{ (success() || failure()) && github.ref == 'refs/heads/main' && github.event_name == 'push' && github.repository == 'linode/linodego' }} # Run even if integration tests fail and only on main repository
+ needs: [ test ]
+ if: ${{ (success() || failure()) && github.ref == 'refs/heads/main' && github.event_name == 'push' && github.repository == 'linode/linodego' }}
steps:
- name: Notify Slack
- uses: slackapi/slack-github-action@v1.27.0
+ uses: slackapi/slack-github-action@v2.0.0
with:
- channel-id: ${{ secrets.SLACK_CHANNEL_ID }}
+ method: chat.postMessage
+ token: ${{ secrets.SLACK_BOT_TOKEN }}
payload: |
- {
- "blocks": [
- {
- "type": "section",
- "text": {
- "type": "mrkdwn",
- "text": ":rocket: *${{ github.workflow }} Completed in: ${{ github.repository }}* :white_check_mark:"
- }
- },
- {
- "type": "divider"
- },
- {
- "type": "section",
- "fields": [
- {
- "type": "mrkdwn",
- "text": "*Build Result:*\n${{ needs.test.result == 'success' && ':large_green_circle: Build Passed' || ':red_circle: Build Failed' }}"
- },
- {
- "type": "mrkdwn",
- "text": "*Branch:*\n`${{ github.ref_name }}`"
- }
- ]
- },
- {
- "type": "section",
- "fields": [
- {
- "type": "mrkdwn",
- "text": "*Commit Hash:*\n<${{ github.server_url }}/${{ github.repository }}/commit/${{ github.sha }}|${{ github.sha }}>"
- },
- {
- "type": "mrkdwn",
- "text": "*Run URL:*\n<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View Run Details>"
- }
- ]
- },
- {
- "type": "divider"
- },
- {
- "type": "context",
- "elements": [
- {
- "type": "mrkdwn",
- "text": "Triggered by: :bust_in_silhouette: `${{ github.actor }}`"
- }
- ]
- }
- ]
- }
- env:
- SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
\ No newline at end of file
+ channel: ${{ secrets.SLACK_CHANNEL_ID }}
+ blocks:
+ - type: section
+ text:
+ type: mrkdwn
+ text: ":rocket: *${{ github.workflow }} Completed in: ${{ github.repository }}* :white_check_mark:"
+ - type: divider
+ - type: section
+ fields:
+ - type: mrkdwn
+ text: "*Build Result:*\n${{ needs.test.result == 'success' && ':large_green_circle: Build Passed' || ':red_circle: Build Failed' }}"
+ - type: mrkdwn
+ text: "*Branch:*\n`${{ github.ref_name }}`"
+ - type: section
+ fields:
+ - type: mrkdwn
+ text: "*Commit Hash:*\n<${{ github.server_url }}/${{ github.repository }}/commit/${{ github.sha }}|${{ github.sha }}>"
+ - type: mrkdwn
+ text: "*Run URL:*\n<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View Run Details>"
+ - type: divider
+ - type: context
+ elements:
+ - type: mrkdwn
+ text: "Triggered by: :bust_in_silhouette: `${{ github.actor }}`"
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
new file mode 100644
index 000000000..06c9cab3f
--- /dev/null
+++ b/.github/workflows/codeql.yml
@@ -0,0 +1,46 @@
+name: "CodeQL Advanced"
+
+on:
+ push:
+ branches: [ "dev", "main", "proj/*" ]
+ pull_request:
+ branches: [ "dev", "main", "proj/*" ]
+ schedule:
+ - cron: '39 0 * * 6'
+
+jobs:
+ analyze:
+ name: Analyze (${{ matrix.language }})
+ runs-on: ubuntu-latest
+ permissions:
+ # required for all workflows
+ security-events: write
+
+ # required to fetch internal or private CodeQL packs
+ packages: read
+
+ # only required for workflows in private repositories
+ actions: read
+ contents: read
+
+ strategy:
+ fail-fast: false
+ matrix:
+ include:
+ - language: go
+ build-mode: autobuild
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v4
+
+ - name: Initialize CodeQL
+ uses: github/codeql-action/init@v3
+ with:
+ languages: ${{ matrix.language }}
+ build-mode: ${{ matrix.build-mode }}
+ queries: security-and-quality
+
+ - name: Perform CodeQL Analysis
+ uses: github/codeql-action/analyze@v3
+ with:
+ category: "/language:${{matrix.language}}"
diff --git a/.github/workflows/nightly_smoke_tests.yml b/.github/workflows/nightly_smoke_tests.yml
index 9c52abd0e..984ee8282 100644
--- a/.github/workflows/nightly_smoke_tests.yml
+++ b/.github/workflows/nightly_smoke_tests.yml
@@ -38,61 +38,32 @@ jobs:
- name: Notify Slack
if: (success() || failure()) && github.repository == 'linode/linodego'
- uses: slackapi/slack-github-action@v1.27.0
+ uses: slackapi/slack-github-action@v2.0.0
with:
- channel-id: ${{ secrets.SLACK_CHANNEL_ID }}
+ method: chat.postMessage
+ token: ${{ secrets.SLACK_BOT_TOKEN }}
payload: |
- {
- "blocks": [
- {
- "type": "section",
- "text": {
- "type": "mrkdwn",
- "text": ":rocket: *${{ github.workflow }} Completed in: ${{ github.repository }}* :white_check_mark:"
- }
- },
- {
- "type": "divider"
- },
- {
- "type": "section",
- "fields": [
- {
- "type": "mrkdwn",
- "text": "*Build Result:*\n${{ steps.smoke_tests.outcome == 'success' && ':large_green_circle: Build Passed' || ':red_circle: Build Failed' }}"
- },
- {
- "type": "mrkdwn",
- "text": "*Branch:*\n`${{ github.ref_name }}`"
- }
- ]
- },
- {
- "type": "section",
- "fields": [
- {
- "type": "mrkdwn",
- "text": "*Commit Hash:*\n<${{ github.server_url }}/${{ github.repository }}/commit/${{ github.sha }}|${{ github.sha }}>"
- },
- {
- "type": "mrkdwn",
- "text": "*Run URL:*\n<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View Run Details>"
- }
- ]
- },
- {
- "type": "divider"
- },
- {
- "type": "context",
- "elements": [
- {
- "type": "mrkdwn",
- "text": "Triggered by: :bust_in_silhouette: `${{ github.actor }}`"
- }
- ]
- }
- ]
- }
- env:
- SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
\ No newline at end of file
+ channel: ${{ secrets.SLACK_CHANNEL_ID }}
+ blocks:
+ - type: section
+ text:
+ type: mrkdwn
+ text: ":rocket: *${{ github.workflow }} Completed in: ${{ github.repository }}* :white_check_mark:"
+ - type: divider
+ - type: section
+ fields:
+ - type: mrkdwn
+ text: "*Build Result:*\n${{ steps.smoke_tests.outcome == 'success' && ':large_green_circle: Build Passed' || ':red_circle: Build Failed' }}"
+ - type: mrkdwn
+ text: "*Branch:*\n`${{ github.ref_name }}`"
+ - type: section
+ fields:
+ - type: mrkdwn
+ text: "*Commit Hash:*\n<${{ github.server_url }}/${{ github.repository }}/commit/${{ github.sha }}|${{ github.sha }}>"
+ - type: mrkdwn
+ text: "*Run URL:*\n<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View Run Details>"
+ - type: divider
+ - type: context
+ elements:
+ - type: mrkdwn
+ text: "Triggered by: :bust_in_silhouette: `${{ github.actor }}`"
\ No newline at end of file
diff --git a/.github/workflows/release-notify-slack.yml b/.github/workflows/release-notify-slack.yml
index b9480ec2e..8fc95a605 100644
--- a/.github/workflows/release-notify-slack.yml
+++ b/.github/workflows/release-notify-slack.yml
@@ -10,21 +10,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Notify Slack - Main Message
- id: main_message
- uses: slackapi/slack-github-action@v1.27.0
+ uses: slackapi/slack-github-action@v2.0.0
with:
- channel-id: ${{ secrets.DEV_DX_SLACK_CHANNEL_ID }}
+ method: chat.postMessage
+ token: ${{ secrets.SLACK_BOT_TOKEN }}
payload: |
- {
- "blocks": [
- {
- "type": "section",
- "text": {
- "type": "mrkdwn",
- "text": "*New Release Published: _linodego_ <${{ github.event.release.html_url }}|${{ github.event.release.tag_name }}> is now live!* :tada:"
- }
- }
- ]
- }
- env:
- SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
\ No newline at end of file
+ channel: ${{ secrets.DEV_DX_SLACK_CHANNEL_ID }}
+ blocks:
+ - type: section
+ text:
+ type: mrkdwn
+ text: "*New Release Published: _linodego_ <${{ github.event.release.html_url }}|${{ github.event.release.tag_name }}> is now live!* :tada:"
\ No newline at end of file
diff --git a/.github/workflows/gosec_pr.yml b/.github/workflows/security_pr.yml
similarity index 54%
rename from .github/workflows/gosec_pr.yml
rename to .github/workflows/security_pr.yml
index 64e63dff0..fcd8e2f69 100644
--- a/.github/workflows/gosec_pr.yml
+++ b/.github/workflows/security_pr.yml
@@ -1,8 +1,21 @@
-name: Gosec Scan
+name: Security Checks for Pull Requests
on:
pull_request: null
jobs:
+ dependency-review:
+ permissions:
+ contents: read
+ pull-requests: write
+ runs-on: ubuntu-latest
+ steps:
+ - name: 'Checkout repository'
+ uses: actions/checkout@v4
+ - name: 'Dependency Review'
+ uses: actions/dependency-review-action@v4
+ with:
+ comment-summary-in-pr: on-failure
+
gosec_scan:
runs-on: ubuntu-latest
env:
diff --git a/account_oauth_client.go b/account_oauth_client.go
index 6f2a57a1c..f575c41ca 100644
--- a/account_oauth_client.go
+++ b/account_oauth_client.go
@@ -129,3 +129,14 @@ func (c *Client) DeleteOAuthClient(ctx context.Context, clientID string) error {
err := doDELETERequest(ctx, c, e)
return err
}
+
+// ResetOAuthClientSecret resets the OAuth Client secret for a client with a specified id
+func (c *Client) ResetOAuthClientSecret(ctx context.Context, clientID string) (*OAuthClient, error) {
+ e := formatAPIPath("account/oauth-clients/%s/reset-secret", clientID)
+ response, err := doPOSTRequest[OAuthClient, any](ctx, c, e)
+ if err != nil {
+ return nil, err
+ }
+
+ return response, nil
+}
diff --git a/account_service_transfer.go b/account_service_transfer.go
new file mode 100644
index 000000000..7d5483ce4
--- /dev/null
+++ b/account_service_transfer.go
@@ -0,0 +1,101 @@
+package linodego
+
+import (
+ "context"
+ "encoding/json"
+ "time"
+
+ "github.com/linode/linodego/internal/parseabletime"
+)
+
+// AccountServiceTransferStatus constants start with AccountServiceTransfer and
+// include Linode API Account Service Transfer Status values.
+type AccountServiceTransferStatus string
+
+// AccountServiceTransferStatus constants reflect the current status of an AccountServiceTransfer
+const (
+ AccountServiceTransferAccepted AccountServiceTransferStatus = "accepted"
+ AccountServiceTransferCanceled AccountServiceTransferStatus = "canceled"
+ AccountServiceTransferCompleted AccountServiceTransferStatus = "completed"
+ AccountServiceTransferFailed AccountServiceTransferStatus = "failed"
+ AccountServiceTransferPending AccountServiceTransferStatus = "pending"
+ AccountServiceTransferStale AccountServiceTransferStatus = "stale"
+)
+
+// AccountServiceTransfer represents a request to transfer a service on an Account
+type AccountServiceTransfer struct {
+ Created *time.Time `json:"-"`
+ Entities AccountServiceTransferEntity `json:"entities"`
+ Expiry *time.Time `json:"-"`
+ IsSender bool `json:"is_sender"`
+ Status AccountServiceTransferStatus `json:"status"`
+ Token string `json:"token"`
+ Updated *time.Time `json:"-"`
+}
+
+// AccountServiceTransferEntity represents a collection of the services to include
+// in a transfer request, separated by type.
+// Note: At this time, only Linodes can be transferred.
+type AccountServiceTransferEntity struct {
+ Linodes []int `json:"linodes"`
+}
+
+type AccountServiceTransferRequestOptions struct {
+ Entities AccountServiceTransferEntity `json:"entities"`
+}
+
+// UnmarshalJSON implements the json.Unmarshaler interface
+func (ast *AccountServiceTransfer) UnmarshalJSON(b []byte) error {
+ type Mask AccountServiceTransfer
+
+ p := struct {
+ *Mask
+ Created *parseabletime.ParseableTime `json:"created"`
+ Expiry *parseabletime.ParseableTime `json:"expiry"`
+ Updated *parseabletime.ParseableTime `json:"updated"`
+ }{
+ Mask: (*Mask)(ast),
+ }
+
+ if err := json.Unmarshal(b, &p); err != nil {
+ return err
+ }
+
+ ast.Created = (*time.Time)(p.Created)
+ ast.Expiry = (*time.Time)(p.Expiry)
+ ast.Updated = (*time.Time)(p.Updated)
+
+ return nil
+}
+
+// ListAccountServiceTransfer gets a paginated list of AccountServiceTransfer for the Account.
+func (c *Client) ListAccountServiceTransfer(ctx context.Context, opts *ListOptions) ([]AccountServiceTransfer, error) {
+ e := "account/service-transfers"
+ return getPaginatedResults[AccountServiceTransfer](ctx, c, e, opts)
+}
+
+// GetAccountServiceTransfer gets the details of the AccountServiceTransfer for the provided token.
+func (c *Client) GetAccountServiceTransfer(ctx context.Context, token string) (*AccountServiceTransfer, error) {
+ e := formatAPIPath("account/service-transfers/%s", token)
+ return doGETRequest[AccountServiceTransfer](ctx, c, e)
+}
+
+// RequestAccountServiceTransfer creates a transfer request for the specified services.
+func (c *Client) RequestAccountServiceTransfer(ctx context.Context, opts AccountServiceTransferRequestOptions) (*AccountServiceTransfer, error) {
+ e := "account/service-transfers"
+ return doPOSTRequest[AccountServiceTransfer](ctx, c, e, opts)
+}
+
+// AcceptAccountServiceTransfer accepts an AccountServiceTransfer for the provided token to
+// receive the services included in the transfer to the Account.
+func (c *Client) AcceptAccountServiceTransfer(ctx context.Context, token string) error {
+ e := formatAPIPath("account/service-transfers/%s/accept", token)
+ _, err := doPOSTRequest[AccountServiceTransfer, any](ctx, c, e)
+ return err
+}
+
+// CancelAccountServiceTransfer cancels the AccountServiceTransfer for the provided token.
+func (c *Client) CancelAccountServiceTransfer(ctx context.Context, token string) error {
+ e := formatAPIPath("account/service-transfers/%s", token)
+ return doDELETERequest(ctx, c, e)
+}
diff --git a/account_user_grants.go b/account_user_grants.go
index f0ca1dc7b..8b6227e9e 100644
--- a/account_user_grants.go
+++ b/account_user_grants.go
@@ -20,9 +20,12 @@ type GlobalUserGrants struct {
AddLinodes bool `json:"add_linodes"`
AddLongview bool `json:"add_longview"`
AddNodeBalancers bool `json:"add_nodebalancers"`
+ AddPlacementGroups bool `json:"add_placement_groups"`
AddStackScripts bool `json:"add_stackscripts"`
AddVolumes bool `json:"add_volumes"`
+ AddVPCs bool `json:"add_vpcs"`
CancelAccount bool `json:"cancel_account"`
+ ChildAccountAccess bool `json:"child_account_access"`
LongviewSubscription bool `json:"longview_subscription"`
}
@@ -38,29 +41,33 @@ type GrantedEntity struct {
}
type UserGrants struct {
- Database []GrantedEntity `json:"database"`
- Domain []GrantedEntity `json:"domain"`
- Firewall []GrantedEntity `json:"firewall"`
- Image []GrantedEntity `json:"image"`
- Linode []GrantedEntity `json:"linode"`
- Longview []GrantedEntity `json:"longview"`
- NodeBalancer []GrantedEntity `json:"nodebalancer"`
- StackScript []GrantedEntity `json:"stackscript"`
- Volume []GrantedEntity `json:"volume"`
+ Database []GrantedEntity `json:"database"`
+ Domain []GrantedEntity `json:"domain"`
+ Firewall []GrantedEntity `json:"firewall"`
+ Image []GrantedEntity `json:"image"`
+ Linode []GrantedEntity `json:"linode"`
+ Longview []GrantedEntity `json:"longview"`
+ NodeBalancer []GrantedEntity `json:"nodebalancer"`
+ PlacementGroup []GrantedEntity `json:"placement_group"`
+ StackScript []GrantedEntity `json:"stackscript"`
+ Volume []GrantedEntity `json:"volume"`
+ VPC []GrantedEntity `json:"vpc"`
Global GlobalUserGrants `json:"global"`
}
type UserGrantsUpdateOptions struct {
- Database []GrantedEntity `json:"database,omitempty"`
- Domain []EntityUserGrant `json:"domain,omitempty"`
- Firewall []EntityUserGrant `json:"firewall,omitempty"`
- Image []EntityUserGrant `json:"image,omitempty"`
- Linode []EntityUserGrant `json:"linode,omitempty"`
- Longview []EntityUserGrant `json:"longview,omitempty"`
- NodeBalancer []EntityUserGrant `json:"nodebalancer,omitempty"`
- StackScript []EntityUserGrant `json:"stackscript,omitempty"`
- Volume []EntityUserGrant `json:"volume,omitempty"`
+ Database []GrantedEntity `json:"database,omitempty"`
+ Domain []EntityUserGrant `json:"domain,omitempty"`
+ Firewall []EntityUserGrant `json:"firewall,omitempty"`
+ Image []EntityUserGrant `json:"image,omitempty"`
+ Linode []EntityUserGrant `json:"linode,omitempty"`
+ Longview []EntityUserGrant `json:"longview,omitempty"`
+ NodeBalancer []EntityUserGrant `json:"nodebalancer,omitempty"`
+ PlacementGroup []EntityUserGrant `json:"placement_group,omitempty"`
+ StackScript []EntityUserGrant `json:"stackscript,omitempty"`
+ Volume []EntityUserGrant `json:"volume,omitempty"`
+ VPC []EntityUserGrant `json:"vpc,omitempty"`
Global GlobalUserGrants `json:"global"`
}
diff --git a/account_users.go b/account_users.go
index 88615fa81..54dc10bce 100644
--- a/account_users.go
+++ b/account_users.go
@@ -47,6 +47,7 @@ type UserCreateOptions struct {
type UserUpdateOptions struct {
Username string `json:"username,omitempty"`
Restricted *bool `json:"restricted,omitempty"`
+ Email string `json:"email,omitempty"`
}
// UnmarshalJSON implements the json.Unmarshaler interface
@@ -102,6 +103,7 @@ func (i User) GetCreateOptions() (o UserCreateOptions) {
func (i User) GetUpdateOptions() (o UserUpdateOptions) {
o.Username = i.Username
o.Restricted = copyBool(&i.Restricted)
+ o.Email = i.Email
return
}
diff --git a/domains.go b/domains.go
index 0bc05bdd2..0bc65aa18 100644
--- a/domains.go
+++ b/domains.go
@@ -165,6 +165,15 @@ const (
DomainStatusHasErrors DomainStatus = "has_errors"
)
+type DomainCloneOptions struct {
+ Domain string `json:"domain"`
+}
+
+type DomainImportOptions struct {
+ Domain string `json:"domain"`
+ RemoteNameserver string `json:"remove_nameserver"`
+}
+
// GetUpdateOptions converts a Domain to DomainUpdateOptions for use in UpdateDomain
func (d Domain) GetUpdateOptions() (du DomainUpdateOptions) {
du.Domain = d.Domain
@@ -244,3 +253,17 @@ func (c *Client) GetDomainZoneFile(ctx context.Context, domainID int) (*DomainZo
return response, nil
}
+
+// CloneDomain clones a Domain and all associated DNS records from a Domain that is registered in Linode's DNS manager.
+func (c *Client) CloneDomain(ctx context.Context, domainID int, opts DomainCloneOptions) (*Domain, error) {
+ e := formatAPIPath("domains/%d/clone", domainID)
+
+ return doPOSTRequest[Domain](ctx, c, e, opts)
+}
+
+// ImportDomain imports a domain zone from a remote nameserver.
+func (c *Client) ImportDomain(ctx context.Context, opts DomainImportOptions) (*Domain, error) {
+ e := "domains/import"
+
+ return doPOSTRequest[Domain](ctx, c, e, opts)
+}
diff --git a/go.mod b/go.mod
index 7e6c47cdb..9903e9bfb 100644
--- a/go.mod
+++ b/go.mod
@@ -1,19 +1,20 @@
module github.com/linode/linodego
require (
- github.com/go-resty/resty/v2 v2.15.3
+ github.com/go-resty/resty/v2 v2.16.2
github.com/google/go-cmp v0.6.0
+ github.com/google/go-querystring v1.1.0
github.com/jarcoal/httpmock v1.3.1
- golang.org/x/net v0.30.0
- golang.org/x/oauth2 v0.23.0
- golang.org/x/text v0.20.0
+ golang.org/x/net v0.32.0
+ golang.org/x/oauth2 v0.24.0
+ golang.org/x/text v0.21.0
gopkg.in/ini.v1 v1.66.6
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
- github.com/stretchr/testify v1.9.0
+ github.com/stretchr/testify v1.10.0
gopkg.in/yaml.v3 v3.0.1 // indirect
)
diff --git a/go.sum b/go.sum
index 883e85c42..e9b0d11ea 100644
--- a/go.sum
+++ b/go.sum
@@ -1,25 +1,29 @@
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
-github.com/go-resty/resty/v2 v2.15.3 h1:bqff+hcqAflpiF591hhJzNdkRsFhlB96CYfBwSFvql8=
-github.com/go-resty/resty/v2 v2.15.3/go.mod h1:0fHAoK7JoBy/Ch36N8VFeMsK7xQOHhvWaC3iOktwmIU=
+github.com/go-resty/resty/v2 v2.16.2 h1:CpRqTjIzq/rweXUt9+GxzzQdlkqMdt8Lm/fuK/CAbAg=
+github.com/go-resty/resty/v2 v2.16.2/go.mod h1:0fHAoK7JoBy/Ch36N8VFeMsK7xQOHhvWaC3iOktwmIU=
+github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
+github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
+github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
github.com/jarcoal/httpmock v1.3.1 h1:iUx3whfZWVf3jT01hQTO/Eo5sAYtB2/rqaUuOtpInww=
github.com/jarcoal/httpmock v1.3.1/go.mod h1:3yb8rc4BI7TCBhFY8ng0gjuLKJNquuDNiPaZjnENuYg=
github.com/maxatome/go-testdeep v1.12.0 h1:Ql7Go8Tg0C1D/uMMX59LAoYK7LffeJQ6X2T04nTH68g=
github.com/maxatome/go-testdeep v1.12.0/go.mod h1:lPZc/HAcJMP92l7yI6TRz1aZN5URwUBUAfUNvrclaNM=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
-github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
-github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
-golang.org/x/net v0.30.0 h1:AcW1SDZMkb8IpzCdQUaIq2sP4sZ4zw+55h6ynffypl4=
-golang.org/x/net v0.30.0/go.mod h1:2wGyMJ5iFasEhkwi13ChkO/t1ECNC4X4eBKkVFyYFlU=
-golang.org/x/oauth2 v0.23.0 h1:PbgcYx2W7i4LvjJWEbf0ngHV6qJYr86PkAV3bXdLEbs=
-golang.org/x/oauth2 v0.23.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
-golang.org/x/text v0.20.0 h1:gK/Kv2otX8gz+wn7Rmb3vT96ZwuoxnQlY+HlJVj7Qug=
-golang.org/x/text v0.20.0/go.mod h1:D4IsuqiFMhST5bX19pQ9ikHC2GsaKyk/oF+pn3ducp4=
+github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
+github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
+golang.org/x/net v0.32.0 h1:ZqPmj8Kzc+Y6e0+skZsuACbx+wzMgo5MQsJh9Qd6aYI=
+golang.org/x/net v0.32.0/go.mod h1:CwU0IoeOlnQQWJ6ioyFrfRuomB8GKF6KbYXZVyeXNfs=
+golang.org/x/oauth2 v0.24.0 h1:KTBBxWqUa0ykRPLtV69rRto9TLXcqYkeswu48x/gvNE=
+golang.org/x/oauth2 v0.24.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
+golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo=
+golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ=
golang.org/x/time v0.6.0 h1:eTDhh4ZXt5Qf0augr54TN6suAUudPcawVZeIAPU7D4U=
golang.org/x/time v0.6.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM=
+golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/ini.v1 v1.66.6 h1:LATuAqN/shcYAOkv3wl2L4rkaKqkcgTBQjOyYDvcPKI=
diff --git a/go.work.sum b/go.work.sum
index 0327b6848..661014f4b 100644
--- a/go.work.sum
+++ b/go.work.sum
@@ -42,6 +42,9 @@ golang.org/x/crypto v0.27.0 h1:GXm2NjJrPaiv/h1tb2UH8QfgC/hOf/+z0p6PT8o1w7A=
golang.org/x/crypto v0.27.0/go.mod h1:1Xngt8kV6Dvbssa53Ziq6Eqn0HqbZi5Z6R0ZpwQzt70=
golang.org/x/crypto v0.28.0 h1:GBDwsMXVQi34v5CCYUm2jkJvu4cbtru2U4TN2PSyQnw=
golang.org/x/crypto v0.28.0/go.mod h1:rmgy+3RHxRZMyY0jjAJShp2zgEdOqj2AO7U0pYmeQ7U=
+golang.org/x/crypto v0.29.0/go.mod h1:+F4F4N5hv6v38hfeYwTdx20oUvLLc+QfrE9Ax9HtgRg=
+golang.org/x/crypto v0.30.0 h1:RwoQn3GkWiMkzlX562cLB7OxWvjH1L8xutO2WoJcRoY=
+golang.org/x/crypto v0.30.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk=
golang.org/x/mod v0.17.0 h1:zY54UmvipHiNd+pm+m0x9KhZ9hl1/7QNMyxXbc6ICqA=
golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
golang.org/x/net v0.27.0/go.mod h1:dDi0PyhWNoiUOrAS8uXv/vnScO4wnHQO4mj9fn/RytE=
@@ -51,10 +54,13 @@ golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ=
golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
golang.org/x/sync v0.9.0 h1:fEo0HyrW1GIgZdpbhCRO0PkJajUS5H9IFUztCgEo2jQ=
golang.org/x/sync v0.9.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
+golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ=
+golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
golang.org/x/sys v0.25.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/telemetry v0.0.0-20240228155512-f48c80bd79b2 h1:IRJeR9r1pYWsHKTRe/IInb7lYvbBVIqOgsX/u0mbOWY=
golang.org/x/telemetry v0.0.0-20240228155512-f48c80bd79b2/go.mod h1:TeRTkGYfJXctD9OcfyVLyj2J3IxLnKwHJR8f4D8a3YE=
golang.org/x/term v0.24.0/go.mod h1:lOBK/LVxemqiMij05LGJ0tzNr8xlmwBRJ81PX6wVLH8=
+golang.org/x/text v0.19.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY=
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk=
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8=
google.golang.org/appengine v1.6.7 h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c=
diff --git a/images.go b/images.go
index 9bbb20757..dd1d5f3fa 100644
--- a/images.go
+++ b/images.go
@@ -183,7 +183,6 @@ func (c *Client) UpdateImage(ctx context.Context, imageID string, opts ImageUpda
}
// ReplicateImage replicates an image to a given set of regions.
-// NOTE: Image replication may not currently be available to all users.
func (c *Client) ReplicateImage(ctx context.Context, imageID string, opts ImageReplicateOptions) (*Image, error) {
return doPOSTRequest[Image](
ctx,
diff --git a/instances.go b/instances.go
index e9654526d..d996bef70 100644
--- a/instances.go
+++ b/instances.go
@@ -90,9 +90,10 @@ type InstanceAlert struct {
// InstanceBackup represents backup settings for an instance
type InstanceBackup struct {
- Available bool `json:"available,omitempty"` // read-only
- Enabled bool `json:"enabled,omitempty"` // read-only
- Schedule struct {
+ Available bool `json:"available,omitempty"` // read-only
+ Enabled bool `json:"enabled,omitempty"` // read-only
+ LastSuccessful *time.Time `json:"-"` // read-only
+ Schedule struct {
Day string `json:"day,omitempty"`
Window string `json:"window,omitempty"`
} `json:"schedule,omitempty"`
@@ -136,6 +137,7 @@ type InstancePlacementGroup struct {
Label string `json:"label"`
PlacementGroupType PlacementGroupType `json:"placement_group_type"`
PlacementGroupPolicy PlacementGroupPolicy `json:"placement_group_policy"`
+ MigratingTo string `json:"migrating_to"` // read-only
}
// InstanceMetadataOptions specifies various Instance creation fields
@@ -225,6 +227,26 @@ func (i *Instance) UnmarshalJSON(b []byte) error {
return nil
}
+// UnmarshalJSON implements the json.Unmarshaler interface
+func (backup *InstanceBackup) UnmarshalJSON(b []byte) error {
+ type Mask InstanceBackup
+
+ p := struct {
+ *Mask
+ LastSuccessful *parseabletime.ParseableTime `json:"last_successful"`
+ }{
+ Mask: (*Mask)(backup),
+ }
+
+ if err := json.Unmarshal(b, &p); err != nil {
+ return err
+ }
+
+ backup.LastSuccessful = (*time.Time)(p.LastSuccessful)
+
+ return nil
+}
+
// GetUpdateOptions converts an Instance to InstanceUpdateOptions for use in UpdateInstance
func (i *Instance) GetUpdateOptions() InstanceUpdateOptions {
return InstanceUpdateOptions{
@@ -448,11 +470,26 @@ func (c *Client) ShutdownInstance(ctx context.Context, id int) error {
return c.simpleInstanceAction(ctx, "shutdown", id)
}
+// Deprecated: Please use UpgradeInstance instead.
// MutateInstance Upgrades a Linode to its next generation.
func (c *Client) MutateInstance(ctx context.Context, id int) error {
return c.simpleInstanceAction(ctx, "mutate", id)
}
+// InstanceUpgradeOptions is a struct representing the options for upgrading a Linode
+type InstanceUpgradeOptions struct {
+ // Automatically resize disks when resizing a Linode.
+ // When resizing down to a smaller plan your Linode's data must fit within the smaller disk size.
+ AllowAutoDiskResize bool `json:"allow_auto_disk_resize"`
+}
+
+// UpgradeInstance upgrades a Linode to its next generation.
+func (c *Client) UpgradeInstance(ctx context.Context, linodeID int, opts InstanceUpgradeOptions) error {
+ e := formatAPIPath("linode/instances/%d/mutate", linodeID)
+ _, err := doPOSTRequest[Instance](ctx, c, e, opts)
+ return err
+}
+
// MigrateInstance - Migrate an instance
func (c *Client) MigrateInstance(ctx context.Context, linodeID int, opts InstanceMigrateOptions) error {
e := formatAPIPath("linode/instances/%d/migrate", linodeID)
diff --git a/k8s/go.mod b/k8s/go.mod
index 815caef14..6ab7d0a9d 100644
--- a/k8s/go.mod
+++ b/k8s/go.mod
@@ -14,10 +14,11 @@ require (
github.com/go-openapi/jsonpointer v0.19.6 // indirect
github.com/go-openapi/jsonreference v0.20.2 // indirect
github.com/go-openapi/swag v0.22.3 // indirect
- github.com/go-resty/resty/v2 v2.15.3 // indirect
+ github.com/go-resty/resty/v2 v2.16.2 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/gnostic-models v0.6.8 // indirect
+ github.com/google/go-querystring v1.1.0 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/imdario/mergo v0.3.6 // indirect
@@ -28,11 +29,11 @@ require (
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/spf13/pflag v1.0.5 // indirect
- golang.org/x/net v0.30.0 // indirect
- golang.org/x/oauth2 v0.23.0 // indirect
- golang.org/x/sys v0.26.0 // indirect
- golang.org/x/term v0.25.0 // indirect
- golang.org/x/text v0.20.0 // indirect
+ golang.org/x/net v0.32.0 // indirect
+ golang.org/x/oauth2 v0.24.0 // indirect
+ golang.org/x/sys v0.28.0 // indirect
+ golang.org/x/term v0.27.0 // indirect
+ golang.org/x/text v0.21.0 // indirect
golang.org/x/time v0.6.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
diff --git a/k8s/go.sum b/k8s/go.sum
index b08c6f6ce..263f83616 100644
--- a/k8s/go.sum
+++ b/k8s/go.sum
@@ -12,8 +12,8 @@ github.com/go-openapi/jsonreference v0.20.2 h1:3sVjiK66+uXK/6oQ8xgcRKcFgQ5KXa2Kv
github.com/go-openapi/jsonreference v0.20.2/go.mod h1:Bl1zwGIM8/wsvqjsOQLJ/SH+En5Ap4rVB5KVcIDZG2k=
github.com/go-openapi/swag v0.22.3 h1:yMBqmnQ0gyZvEb/+KzuWZOXgllrXT4SADYbvDaXHv/g=
github.com/go-openapi/swag v0.22.3/go.mod h1:UzaqsxGiab7freDnrUUra0MwWfN/q7tE4j+VcZ0yl14=
-github.com/go-resty/resty/v2 v2.15.3 h1:bqff+hcqAflpiF591hhJzNdkRsFhlB96CYfBwSFvql8=
-github.com/go-resty/resty/v2 v2.15.3/go.mod h1:0fHAoK7JoBy/Ch36N8VFeMsK7xQOHhvWaC3iOktwmIU=
+github.com/go-resty/resty/v2 v2.16.2 h1:CpRqTjIzq/rweXUt9+GxzzQdlkqMdt8Lm/fuK/CAbAg=
+github.com/go-resty/resty/v2 v2.16.2/go.mod h1:0fHAoK7JoBy/Ch36N8VFeMsK7xQOHhvWaC3iOktwmIU=
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 h1:tfuBGBXKqDEevZMzYi5KSi8KkcZtzBcTgAUUtapy0OI=
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572/go.mod h1:9Pwr4B2jHnOSGXyyzV8ROjYa2ojvAY6HCGYYfMoC3Ls=
github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=
@@ -22,9 +22,12 @@ github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek
github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps=
github.com/google/gnostic-models v0.6.8 h1:yo/ABAfM5IMRsS1VnXjTBvUb61tFIHozhlYvRgGre9I=
github.com/google/gnostic-models v0.6.8/go.mod h1:5n7qKqH0f5wFt+aWF8CW6pZLLNOfYuF5OpfBSENuI8U=
+github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
+github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
+github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
github.com/google/gofuzz v1.2.0 h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0=
github.com/google/gofuzz v1.2.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
@@ -75,8 +78,8 @@ github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UV
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
-github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
-github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
+github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
+github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
@@ -88,24 +91,24 @@ golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
-golang.org/x/net v0.30.0 h1:AcW1SDZMkb8IpzCdQUaIq2sP4sZ4zw+55h6ynffypl4=
-golang.org/x/net v0.30.0/go.mod h1:2wGyMJ5iFasEhkwi13ChkO/t1ECNC4X4eBKkVFyYFlU=
-golang.org/x/oauth2 v0.23.0 h1:PbgcYx2W7i4LvjJWEbf0ngHV6qJYr86PkAV3bXdLEbs=
-golang.org/x/oauth2 v0.23.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
+golang.org/x/net v0.32.0 h1:ZqPmj8Kzc+Y6e0+skZsuACbx+wzMgo5MQsJh9Qd6aYI=
+golang.org/x/net v0.32.0/go.mod h1:CwU0IoeOlnQQWJ6ioyFrfRuomB8GKF6KbYXZVyeXNfs=
+golang.org/x/oauth2 v0.24.0 h1:KTBBxWqUa0ykRPLtV69rRto9TLXcqYkeswu48x/gvNE=
+golang.org/x/oauth2 v0.24.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.26.0 h1:KHjCJyddX0LoSTb3J+vWpupP9p0oznkqVk/IfjymZbo=
-golang.org/x/sys v0.26.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
-golang.org/x/term v0.25.0 h1:WtHI/ltw4NvSUig5KARz9h521QvRC8RmF/cuYqifU24=
-golang.org/x/term v0.25.0/go.mod h1:RPyXicDX+6vLxogjjRxjgD2TKtmAO6NZBsBRfrOLu7M=
+golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA=
+golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
+golang.org/x/term v0.27.0 h1:WP60Sv1nlK1T6SupCHbXzSaN0b9wUmsPoRS9b61A23Q=
+golang.org/x/term v0.27.0/go.mod h1:iMsnZpn0cago0GOrHO2+Y7u7JPn5AylBrcoWkElMTSM=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
-golang.org/x/text v0.20.0 h1:gK/Kv2otX8gz+wn7Rmb3vT96ZwuoxnQlY+HlJVj7Qug=
-golang.org/x/text v0.20.0/go.mod h1:D4IsuqiFMhST5bX19pQ9ikHC2GsaKyk/oF+pn3ducp4=
+golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo=
+golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ=
golang.org/x/time v0.6.0 h1:eTDhh4ZXt5Qf0augr54TN6suAUudPcawVZeIAPU7D4U=
golang.org/x/time v0.6.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
diff --git a/lke_clusters.go b/lke_clusters.go
index 7b34559d1..a6d5042de 100644
--- a/lke_clusters.go
+++ b/lke_clusters.go
@@ -55,7 +55,7 @@ type LKEClusterAPIEndpoint struct {
// LKEClusterKubeconfig fields are those returned by GetLKEClusterKubeconfig
type LKEClusterKubeconfig struct {
- KubeConfig string `json:"kubeconfig"`
+ KubeConfig string `json:"kubeconfig"` // Base64-encoded Kubeconfig file for this Cluster.
}
// LKEClusterDashboard fields are those returned by GetLKEClusterDashboard
diff --git a/lke_clusters_control_plane.go b/lke_clusters_control_plane.go
index fc648bf86..24bed1cbf 100644
--- a/lke_clusters_control_plane.go
+++ b/lke_clusters_control_plane.go
@@ -18,8 +18,9 @@ type LKEClusterControlPlaneACLAddresses struct {
// for an LKE cluster's control plane.
// NOTE: Control Plane ACLs may not currently be available to all users.
type LKEClusterControlPlaneACL struct {
- Enabled bool `json:"enabled"`
- Addresses *LKEClusterControlPlaneACLAddresses `json:"addresses"`
+ Enabled bool `json:"enabled"`
+ Addresses *LKEClusterControlPlaneACLAddresses `json:"addresses"`
+ RevisionID string `json:"revision_id,omitempty"`
}
// LKEClusterControlPlaneACLAddressesOptions are the options used to
@@ -33,8 +34,9 @@ type LKEClusterControlPlaneACLAddressesOptions struct {
// configuring an LKE cluster's control plane ACL policy.
// NOTE: Control Plane ACLs may not currently be available to all users.
type LKEClusterControlPlaneACLOptions struct {
- Enabled *bool `json:"enabled,omitempty"`
- Addresses *LKEClusterControlPlaneACLAddressesOptions `json:"addresses,omitempty"`
+ Enabled *bool `json:"enabled,omitempty"`
+ Addresses *LKEClusterControlPlaneACLAddressesOptions `json:"addresses,omitempty"`
+ RevisionID string `json:"revision_id"`
}
// LKEClusterControlPlaneOptions represents the options used when
diff --git a/network_ips.go b/network_ips.go
index 39bcd2d63..d9cd49ffe 100644
--- a/network_ips.go
+++ b/network_ips.go
@@ -4,9 +4,21 @@ import (
"context"
)
-// IPAddressUpdateOptions fields are those accepted by UpdateToken
-type IPAddressUpdateOptions struct {
+// IPAddressUpdateOptionsV2 fields are those accepted by UpdateIPAddress.
+// NOTE: An IP's RDNS can be reset to default using the following pattern:
+//
+// IPAddressUpdateOptionsV2{
+// RDNS: linodego.Pointer[*string](nil),
+// }
+type IPAddressUpdateOptionsV2 struct {
// The reverse DNS assigned to this address. For public IPv4 addresses, this will be set to a default value provided by Linode if set to nil.
+ Reserved *bool `json:"reserved,omitempty"`
+ RDNS **string `json:"rdns,omitempty"`
+}
+
+// IPAddressUpdateOptions fields are those accepted by UpdateIPAddress.
+// Deprecated: Please use IPAddressUpdateOptionsV2 for all new implementations.
+type IPAddressUpdateOptions struct {
RDNS *string `json:"rdns"`
}
@@ -16,6 +28,14 @@ type LinodeIPAssignment struct {
LinodeID int `json:"linode_id"`
}
+type AllocateReserveIPOptions struct {
+ Type string `json:"type"`
+ Public bool `json:"public"`
+ Reserved bool `json:"reserved,omitempty"`
+ Region string `json:"region,omitempty"`
+ LinodeID int `json:"linode_id,omitempty"`
+}
+
// LinodesAssignIPsOptions fields are those accepted by InstancesAssignIPs.
type LinodesAssignIPsOptions struct {
Region string `json:"region"`
@@ -35,13 +55,24 @@ type ListIPAddressesQuery struct {
SkipIPv6RDNS bool `query:"skip_ipv6_rdns"`
}
-// GetUpdateOptions converts a IPAddress to IPAddressUpdateOptions for use in UpdateIPAddress
+// GetUpdateOptionsV2 converts a IPAddress to IPAddressUpdateOptionsV2 for use in UpdateIPAddressV2.
+func (i InstanceIP) GetUpdateOptionsV2() IPAddressUpdateOptionsV2 {
+ rdns := copyString(&i.RDNS)
+
+ return IPAddressUpdateOptionsV2{
+ RDNS: &rdns,
+ Reserved: copyBool(&i.Reserved),
+ }
+}
+
+// GetUpdateOptions converts a IPAddress to IPAddressUpdateOptions for use in UpdateIPAddress.
+// Deprecated: Please use GetUpdateOptionsV2 for all new implementations.
func (i InstanceIP) GetUpdateOptions() (o IPAddressUpdateOptions) {
o.RDNS = copyString(&i.RDNS)
return
}
-// ListIPAddresses lists IPAddresses
+// ListIPAddresses lists IPAddresses.
func (c *Client) ListIPAddresses(ctx context.Context, opts *ListOptions) ([]InstanceIP, error) {
response, err := getPaginatedResults[InstanceIP](ctx, c, "networking/ips", opts)
if err != nil {
@@ -51,7 +82,7 @@ func (c *Client) ListIPAddresses(ctx context.Context, opts *ListOptions) ([]Inst
return response, nil
}
-// GetIPAddress gets the IPAddress with the provided IP
+// GetIPAddress gets the IPAddress with the provided IP.
func (c *Client) GetIPAddress(ctx context.Context, id string) (*InstanceIP, error) {
e := formatAPIPath("networking/ips/%s", id)
response, err := doGETRequest[InstanceIP](ctx, c, e)
@@ -62,7 +93,19 @@ func (c *Client) GetIPAddress(ctx context.Context, id string) (*InstanceIP, erro
return response, nil
}
-// UpdateIPAddress updates the IPAddress with the specified id
+// UpdateIPAddressV2 updates the IP address with the specified address.
+func (c *Client) UpdateIPAddressV2(ctx context.Context, address string, opts IPAddressUpdateOptionsV2) (*InstanceIP, error) {
+ e := formatAPIPath("networking/ips/%s", address)
+ response, err := doPUTRequest[InstanceIP](ctx, c, e, opts)
+ if err != nil {
+ return nil, err
+ }
+
+ return response, nil
+}
+
+// UpdateIPAddress updates the IP address with the specified id.
+// Deprecated: Please use UpdateIPAddressV2 for all new implementation.
func (c *Client) UpdateIPAddress(ctx context.Context, id string, opts IPAddressUpdateOptions) (*InstanceIP, error) {
e := formatAPIPath("networking/ips/%s", id)
response, err := doPUTRequest[InstanceIP](ctx, c, e, opts)
@@ -88,3 +131,14 @@ func (c *Client) ShareIPAddresses(ctx context.Context, opts IPAddressesShareOpti
_, err := doPOSTRequest[InstanceIP](ctx, c, e, opts)
return err
}
+
+// AllocateReserveIP allocates a new IPv4 address to the Account, with the option to reserve it
+// and optionally assign it to a Linode.
+func (c *Client) AllocateReserveIP(ctx context.Context, opts AllocateReserveIPOptions) (*InstanceIP, error) {
+ e := "networking/ips"
+ result, err := doPOSTRequest[InstanceIP](ctx, c, e, opts)
+ if err != nil {
+ return nil, err
+ }
+ return result, nil
+}
diff --git a/object_storage_buckets.go b/object_storage_buckets.go
index f5e5cd084..d29a8fbb5 100644
--- a/object_storage_buckets.go
+++ b/object_storage_buckets.go
@@ -3,8 +3,10 @@ package linodego
import (
"context"
"encoding/json"
+ "fmt"
"time"
+ "github.com/google/go-querystring/query"
"github.com/linode/linodego/internal/parseabletime"
)
@@ -34,6 +36,22 @@ type ObjectStorageBucketAccess struct {
CorsEnabled bool `json:"cors_enabled"`
}
+// ObjectStorageBucketContent holds the content of an ObjectStorageBucket
+type ObjectStorageBucketContent struct {
+ Data []ObjectStorageBucketContentData `json:"data"`
+ IsTruncated bool `json:"is_truncated"`
+ NextMarker *string `json:"next_marker"`
+}
+
+// ObjectStorageBucketContentData holds the data of the content of an ObjectStorageBucket
+type ObjectStorageBucketContentData struct {
+ Etag string `json:"etag"`
+ LastModified *time.Time `json:"last_modified"`
+ Name string `json:"name"`
+ Owner string `json:"owner"`
+ Size int `json:"size"`
+}
+
// UnmarshalJSON implements the json.Unmarshaler interface
func (i *ObjectStorageBucket) UnmarshalJSON(b []byte) error {
type Mask ObjectStorageBucket
@@ -76,6 +94,14 @@ type ObjectStorageBucketUpdateAccessOptions struct {
CorsEnabled *bool `json:"cors_enabled,omitempty"`
}
+// ObjectStorageBucketListContentsParams fields are the query parameters for ListObjectStorageBucketContents
+type ObjectStorageBucketListContentsParams struct {
+ Marker *string
+ Delimiter *string
+ Prefix *string
+ PageSize *int
+}
+
// ObjectStorageACL options start with ACL and include all known ACL types
type ObjectStorageACL string
@@ -154,3 +180,20 @@ func (c *Client) DeleteObjectStorageBucket(ctx context.Context, clusterOrRegionI
err := doDELETERequest(ctx, c, e)
return err
}
+
+// Lists the contents of the specified ObjectStorageBucket
+func (c *Client) ListObjectStorageBucketContents(ctx context.Context, clusterOrRegionID, label string, params *ObjectStorageBucketListContentsParams) (*ObjectStorageBucketContent, error) {
+ basePath := formatAPIPath("object-storage/buckets/%s/%s/object-list", clusterOrRegionID, label)
+
+ queryString := ""
+ if params != nil {
+ values, err := query.Values(params)
+ if err != nil {
+ return nil, fmt.Errorf("failed to encode query params: %w", err)
+ }
+ queryString = "?" + values.Encode()
+ }
+
+ e := basePath + queryString
+ return doGETRequest[ObjectStorageBucketContent](ctx, c, e)
+}
diff --git a/placement_groups.go b/placement_groups.go
index 5e68e2e9f..189b3ace1 100644
--- a/placement_groups.go
+++ b/placement_groups.go
@@ -28,13 +28,25 @@ type PlacementGroupMember struct {
// PlacementGroup represents a Linode placement group.
type PlacementGroup struct {
- ID int `json:"id"`
- Label string `json:"label"`
- Region string `json:"region"`
- PlacementGroupType PlacementGroupType `json:"placement_group_type"`
- PlacementGroupPolicy PlacementGroupPolicy `json:"placement_group_policy"`
- IsCompliant bool `json:"is_compliant"`
- Members []PlacementGroupMember `json:"members"`
+ ID int `json:"id"`
+ Label string `json:"label"`
+ Region string `json:"region"`
+ PlacementGroupType PlacementGroupType `json:"placement_group_type"`
+ PlacementGroupPolicy PlacementGroupPolicy `json:"placement_group_policy"`
+ IsCompliant bool `json:"is_compliant"`
+ Members []PlacementGroupMember `json:"members"`
+ Migrations *PlacementGroupMigrations `json:"migrations"`
+}
+
+// PlacementGroupMigrations represent the instances that are being migrated to or from the placement group.
+type PlacementGroupMigrations struct {
+ Inbound []PlacementGroupMigrationInstance `json:"inbound"`
+ Outbound []PlacementGroupMigrationInstance `json:"outbound"`
+}
+
+// PlacementGroupMigrationInstance represents the unique identifier for a compute instance being migrated to/from the placement group.
+type PlacementGroupMigrationInstance struct {
+ LinodeID int `json:"linode_id"`
}
// PlacementGroupCreateOptions represents the options to use
diff --git a/profile_apps.go b/profile_apps.go
new file mode 100644
index 000000000..219d93264
--- /dev/null
+++ b/profile_apps.go
@@ -0,0 +1,73 @@
+package linodego
+
+import (
+ "context"
+ "encoding/json"
+ "time"
+
+ "github.com/linode/linodego/internal/parseabletime"
+)
+
+// ProfileApp represents a ProfileApp object
+type ProfileApp struct {
+ // When this app was authorized.
+ Created *time.Time `json:"-"`
+
+ // When the app's access to your account expires.
+ Expiry *time.Time `json:"-"`
+
+ // This authorization's ID, used for revoking access.
+ ID int `json:"id"`
+
+ // The name of the application you've authorized.
+ Label string `json:"label"`
+
+ // The OAuth scopes this app was authorized with.
+ Scopes string `json:"scopes"`
+
+ // The URL at which this app's thumbnail may be accessed.
+ ThumbnailURL string `json:"thumbnail_url"`
+
+ // The website where you can get more information about this app.
+ Website string `json:"website"`
+}
+
+// UnmarshalJSON implements the json.Unmarshaler interface
+func (pa *ProfileApp) UnmarshalJSON(b []byte) error {
+ type Mask ProfileApp
+
+ l := struct {
+ *Mask
+ Created *parseabletime.ParseableTime `json:"created"`
+ Expiry *parseabletime.ParseableTime `json:"expiry"`
+ }{
+ Mask: (*Mask)(pa),
+ }
+
+ if err := json.Unmarshal(b, &l); err != nil {
+ return err
+ }
+
+ pa.Created = (*time.Time)(l.Created)
+ pa.Expiry = (*time.Time)(l.Expiry)
+
+ return nil
+}
+
+// GetProfileApp returns the ProfileApp with the provided id
+func (c *Client) GetProfileApp(ctx context.Context, appID int) (*ProfileApp, error) {
+ e := formatAPIPath("profile/apps/%d", appID)
+ return doGETRequest[ProfileApp](ctx, c, e)
+}
+
+// ListProfileApps lists ProfileApps that have access to the Account
+func (c *Client) ListProfileApps(ctx context.Context, opts *ListOptions) ([]ProfileApp, error) {
+ return getPaginatedResults[ProfileApp](ctx, c, "profile/apps", opts)
+}
+
+// DeleteProfileApp revokes the given ProfileApp's access to the account
+func (c *Client) DeleteProfileApp(ctx context.Context, appID int) error {
+ e := formatAPIPath("profile/apps/%d", appID)
+ err := doDELETERequest(ctx, c, e)
+ return err
+}
diff --git a/profile_devices.go b/profile_devices.go
new file mode 100644
index 000000000..965b79ce1
--- /dev/null
+++ b/profile_devices.go
@@ -0,0 +1,72 @@
+package linodego
+
+import (
+ "context"
+ "encoding/json"
+ "time"
+
+ "github.com/linode/linodego/internal/parseabletime"
+)
+
+// ProfileDevice represents a ProfileDevice object
+type ProfileDevice struct {
+ // When this Remember Me session was started.
+ Created *time.Time `json:"-"`
+
+ // When this TrustedDevice session expires. Sessions typically last 30 days.
+ Expiry *time.Time `json:"-"`
+
+ // The unique ID for this TrustedDevice.
+ ID int `json:"id"`
+
+ // he last time this TrustedDevice was successfully used to authenticate to login.linode.com
+ LastAuthenticated *time.Time `json:"-"`
+
+ // The last IP Address to successfully authenticate with this TrustedDevice.
+ LastRemoteAddr string `json:"last_remote_addr"`
+
+ // The User Agent of the browser that created this TrustedDevice session.
+ UserAgent string `json:"user_agent"`
+}
+
+// UnmarshalJSON implements the json.Unmarshaler interface
+func (pd *ProfileDevice) UnmarshalJSON(b []byte) error {
+ type Mask ProfileDevice
+
+ l := struct {
+ *Mask
+ Created *parseabletime.ParseableTime `json:"created"`
+ Expiry *parseabletime.ParseableTime `json:"expiry"`
+ LastAuthenticated *parseabletime.ParseableTime `json:"last_authenticated"`
+ }{
+ Mask: (*Mask)(pd),
+ }
+
+ if err := json.Unmarshal(b, &l); err != nil {
+ return err
+ }
+
+ pd.Created = (*time.Time)(l.Created)
+ pd.Expiry = (*time.Time)(l.Expiry)
+ pd.LastAuthenticated = (*time.Time)(l.LastAuthenticated)
+
+ return nil
+}
+
+// GetProfileDevice returns the ProfileDevice with the provided id
+func (c *Client) GetProfileDevice(ctx context.Context, deviceID int) (*ProfileDevice, error) {
+ e := formatAPIPath("profile/devices/%d", deviceID)
+ return doGETRequest[ProfileDevice](ctx, c, e)
+}
+
+// ListProfileDevices lists ProfileDevices for the User
+func (c *Client) ListProfileDevices(ctx context.Context, opts *ListOptions) ([]ProfileDevice, error) {
+ return getPaginatedResults[ProfileDevice](ctx, c, "profile/devices", opts)
+}
+
+// DeleteProfileDevice revokes the given ProfileDevice's status as a trusted device
+func (c *Client) DeleteProfileDevice(ctx context.Context, deviceID int) error {
+ e := formatAPIPath("profile/devices/%d", deviceID)
+ err := doDELETERequest(ctx, c, e)
+ return err
+}
diff --git a/profile_preferences.go b/profile_preferences.go
new file mode 100644
index 000000000..bb2f816c5
--- /dev/null
+++ b/profile_preferences.go
@@ -0,0 +1,32 @@
+package linodego
+
+import (
+ "context"
+ "encoding/json"
+)
+
+// ProfilePreferences represents the user's preferences.
+// The user preferences endpoints allow consumers of the API to store arbitrary JSON data,
+// such as a user's font size preference or preferred display name.
+type ProfilePreferences map[string]interface{}
+
+// UnmarshalJSON implements the json.Unmarshaler interface
+func (p *ProfilePreferences) UnmarshalJSON(b []byte) error {
+ var data map[string]interface{}
+ if err := json.Unmarshal(b, &data); err != nil {
+ return err
+ }
+
+ *p = data
+ return nil
+}
+
+// GetProfilePreferences retrieves the user preferences for the current User
+func (c *Client) GetProfilePreferences(ctx context.Context) (*ProfilePreferences, error) {
+ return doGETRequest[ProfilePreferences](ctx, c, "profile/preferences")
+}
+
+// UpdateProfilePreferences updates the user's preferences with the provided data
+func (c *Client) UpdateProfilePreferences(ctx context.Context, opts ProfilePreferences) (*ProfilePreferences, error) {
+ return doPUTRequest[ProfilePreferences](ctx, c, "profile/preferences", opts)
+}
diff --git a/test/go.mod b/test/go.mod
index 95681667b..9eef9a96c 100644
--- a/test/go.mod
+++ b/test/go.mod
@@ -6,9 +6,9 @@ require (
github.com/jarcoal/httpmock v1.3.1
github.com/linode/linodego v1.33.0
github.com/linode/linodego/k8s v0.0.0-00010101000000-000000000000
- github.com/stretchr/testify v1.9.0
- golang.org/x/net v0.30.0
- golang.org/x/oauth2 v0.23.0
+ github.com/stretchr/testify v1.10.0
+ golang.org/x/net v0.32.0
+ golang.org/x/oauth2 v0.24.0
k8s.io/client-go v0.29.4
)
@@ -19,10 +19,11 @@ require (
github.com/go-openapi/jsonpointer v0.19.6 // indirect
github.com/go-openapi/jsonreference v0.20.2 // indirect
github.com/go-openapi/swag v0.22.3 // indirect
- github.com/go-resty/resty/v2 v2.15.3 // indirect
+ github.com/go-resty/resty/v2 v2.16.2 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/gnostic-models v0.6.8 // indirect
+ github.com/google/go-querystring v1.1.0 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/imdario/mergo v0.3.6 // indirect
@@ -35,9 +36,9 @@ require (
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/objx v0.5.2 // indirect
- golang.org/x/sys v0.26.0 // indirect
- golang.org/x/term v0.25.0 // indirect
- golang.org/x/text v0.20.0 // indirect
+ golang.org/x/sys v0.28.0 // indirect
+ golang.org/x/term v0.27.0 // indirect
+ golang.org/x/text v0.21.0 // indirect
golang.org/x/time v0.6.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
diff --git a/test/go.sum b/test/go.sum
index 534edba11..b730d1c6f 100644
--- a/test/go.sum
+++ b/test/go.sum
@@ -14,8 +14,8 @@ github.com/go-openapi/jsonreference v0.20.2 h1:3sVjiK66+uXK/6oQ8xgcRKcFgQ5KXa2Kv
github.com/go-openapi/jsonreference v0.20.2/go.mod h1:Bl1zwGIM8/wsvqjsOQLJ/SH+En5Ap4rVB5KVcIDZG2k=
github.com/go-openapi/swag v0.22.3 h1:yMBqmnQ0gyZvEb/+KzuWZOXgllrXT4SADYbvDaXHv/g=
github.com/go-openapi/swag v0.22.3/go.mod h1:UzaqsxGiab7freDnrUUra0MwWfN/q7tE4j+VcZ0yl14=
-github.com/go-resty/resty/v2 v2.15.3 h1:bqff+hcqAflpiF591hhJzNdkRsFhlB96CYfBwSFvql8=
-github.com/go-resty/resty/v2 v2.15.3/go.mod h1:0fHAoK7JoBy/Ch36N8VFeMsK7xQOHhvWaC3iOktwmIU=
+github.com/go-resty/resty/v2 v2.16.2 h1:CpRqTjIzq/rweXUt9+GxzzQdlkqMdt8Lm/fuK/CAbAg=
+github.com/go-resty/resty/v2 v2.16.2/go.mod h1:0fHAoK7JoBy/Ch36N8VFeMsK7xQOHhvWaC3iOktwmIU=
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 h1:tfuBGBXKqDEevZMzYi5KSi8KkcZtzBcTgAUUtapy0OI=
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572/go.mod h1:9Pwr4B2jHnOSGXyyzV8ROjYa2ojvAY6HCGYYfMoC3Ls=
github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=
@@ -24,9 +24,12 @@ github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek
github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps=
github.com/google/gnostic-models v0.6.8 h1:yo/ABAfM5IMRsS1VnXjTBvUb61tFIHozhlYvRgGre9I=
github.com/google/gnostic-models v0.6.8/go.mod h1:5n7qKqH0f5wFt+aWF8CW6pZLLNOfYuF5OpfBSENuI8U=
+github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
+github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
+github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
github.com/google/gofuzz v1.2.0 h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0=
github.com/google/gofuzz v1.2.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
@@ -82,8 +85,8 @@ github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UV
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
-github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
-github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
+github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
+github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
@@ -95,24 +98,24 @@ golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
-golang.org/x/net v0.30.0 h1:AcW1SDZMkb8IpzCdQUaIq2sP4sZ4zw+55h6ynffypl4=
-golang.org/x/net v0.30.0/go.mod h1:2wGyMJ5iFasEhkwi13ChkO/t1ECNC4X4eBKkVFyYFlU=
-golang.org/x/oauth2 v0.23.0 h1:PbgcYx2W7i4LvjJWEbf0ngHV6qJYr86PkAV3bXdLEbs=
-golang.org/x/oauth2 v0.23.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
+golang.org/x/net v0.32.0 h1:ZqPmj8Kzc+Y6e0+skZsuACbx+wzMgo5MQsJh9Qd6aYI=
+golang.org/x/net v0.32.0/go.mod h1:CwU0IoeOlnQQWJ6ioyFrfRuomB8GKF6KbYXZVyeXNfs=
+golang.org/x/oauth2 v0.24.0 h1:KTBBxWqUa0ykRPLtV69rRto9TLXcqYkeswu48x/gvNE=
+golang.org/x/oauth2 v0.24.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.26.0 h1:KHjCJyddX0LoSTb3J+vWpupP9p0oznkqVk/IfjymZbo=
-golang.org/x/sys v0.26.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
-golang.org/x/term v0.25.0 h1:WtHI/ltw4NvSUig5KARz9h521QvRC8RmF/cuYqifU24=
-golang.org/x/term v0.25.0/go.mod h1:RPyXicDX+6vLxogjjRxjgD2TKtmAO6NZBsBRfrOLu7M=
+golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA=
+golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
+golang.org/x/term v0.27.0 h1:WP60Sv1nlK1T6SupCHbXzSaN0b9wUmsPoRS9b61A23Q=
+golang.org/x/term v0.27.0/go.mod h1:iMsnZpn0cago0GOrHO2+Y7u7JPn5AylBrcoWkElMTSM=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
-golang.org/x/text v0.20.0 h1:gK/Kv2otX8gz+wn7Rmb3vT96ZwuoxnQlY+HlJVj7Qug=
-golang.org/x/text v0.20.0/go.mod h1:D4IsuqiFMhST5bX19pQ9ikHC2GsaKyk/oF+pn3ducp4=
+golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo=
+golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ=
golang.org/x/time v0.6.0 h1:eTDhh4ZXt5Qf0augr54TN6suAUudPcawVZeIAPU7D4U=
golang.org/x/time v0.6.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
diff --git a/test/integration/TestReservedIPAddresses_GetInstanceIPReservationStatus.yaml b/test/integration/TestReservedIPAddresses_GetInstanceIPReservationStatus.yaml
new file mode 100644
index 000000000..1ca7cdb20
--- /dev/null
+++ b/test/integration/TestReservedIPAddresses_GetInstanceIPReservationStatus.yaml
@@ -0,0 +1,534 @@
+---
+version: 1
+interactions:
+- request:
+ body: '{"region":"us-east"}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/reserved/ips
+ method: POST
+ response:
+ body: '{"address": "69.164.211.224", "gateway": "69.164.211.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "69-164-211-224.ip.linodeusercontent.com",
+ "linode_id": null, "region": "us-east", "vpc_nat_1_1": null, "reserved": true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "264"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Mon, 30 Sep 2024 21:11:18 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "800"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"us-east","type":"g6-nanode-1","label":"go-test-ins-reserved-ip-iciv55fz7379","root_pass":"i.L9In8UuA1\\''+xrW8@HG0[hE91\\?29:40@tkUGG\u003ek:.3c63nRR9!jYIc7j.=Nfm","image":"linode/alpine3.17","interfaces":[{"purpose":"public"}],"booted":false,"ipv4":["69.164.211.224"]}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances
+ method: POST
+ response:
+ body: '{"id": 64660675, "label": "go-test-ins-reserved-ip-iciv55fz7379", "group":
+ "", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "type": "g6-nanode-1", "ipv4": ["69.164.211.224"], "ipv6": "2600:3c03::f03c:95ff:feb1:6cca/128",
+ "image": "linode/alpine3.17", "region": "us-east", "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": false, "available": false, "schedule": {"day":
+ null, "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled":
+ true, "tags": [], "host_uuid": "b3417256e635b83e03311cd43bf9303dacc5a75d", "has_user_data":
+ false, "placement_group": null, "disk_encryption": "disabled", "lke_cluster_id":
+ null, "capabilities": []}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Mon, 30 Sep 2024 21:11:20 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Accept-Encoding
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "10"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ 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/64660675/ips
+ method: GET
+ response:
+ body: '{"ipv4": {"public": [{"address": "69.164.211.224", "gateway": "69.164.211.1",
+ "subnet_mask": "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true,
+ "rdns": "69-164-211-224.ip.linodeusercontent.com", "linode_id": 64660675, "region":
+ "us-east", "vpc_nat_1_1": null, "reserved": true}], "private": [], "shared":
+ [], "reserved": [], "vpc": []}, "ipv6": {"slaac": {"address": "2600:3c03::f03c:95ff:feb1:6cca",
+ "gateway": "fe80::1", "subnet_mask": "ffff:ffff:ffff:ffff::", "prefix": 64,
+ "type": "ipv6", "rdns": null, "linode_id": 64660675, "region": "us-east", "public":
+ true}, "link_local": {"address": "fe80::f03c:95ff:feb1:6cca", "gateway": "fe80::1",
+ "subnet_mask": "ffff:ffff:ffff:ffff::", "prefix": 64, "type": "ipv6", "rdns":
+ null, "linode_id": 64660675, "region": "us-east", "public": false}, "global":
+ []}}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "817"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Mon, 30 Sep 2024 21:11:20 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:
+ - "800"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"us-east","type":"g6-nanode-1","label":"test-instance-ephemeral-ip","root_pass":"*Y3,P,1;B~2r=8G5}s|Pbe8xI\u003e^02uXO0ur964HOd\u003c2{vHsf-^8Utz\u0026ZB64oMxW\u0026"}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances
+ method: POST
+ response:
+ body: '{"id": 64660677, "label": "test-instance-ephemeral-ip", "group": "", "status":
+ "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "type": "g6-nanode-1", "ipv4": ["45.56.102.65"], "ipv6": "2600:3c03::f03c:95ff:feb1:6c9d/128",
+ "image": null, "region": "us-east", "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": false, "available": false, "schedule": {"day": null,
+ "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled":
+ true, "tags": [], "host_uuid": "f3bbdb58fa73e88a3294e17d587a130138658c53", "has_user_data":
+ false, "placement_group": null, "disk_encryption": "disabled", "lke_cluster_id":
+ null, "capabilities": []}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "851"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Mon, 30 Sep 2024 21:11:20 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "10"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ 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/64660677/ips
+ method: GET
+ response:
+ body: '{"ipv4": {"public": [{"address": "45.56.102.65", "gateway": "45.56.102.1",
+ "subnet_mask": "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true,
+ "rdns": "45-56-102-65.ip.linodeusercontent.com", "linode_id": 64660677, "region":
+ "us-east", "vpc_nat_1_1": null, "reserved": false}], "private": [], "shared":
+ [], "reserved": [], "vpc": []}, "ipv6": {"slaac": {"address": "2600:3c03::f03c:95ff:feb1:6c9d",
+ "gateway": "fe80::1", "subnet_mask": "ffff:ffff:ffff:ffff::", "prefix": 64,
+ "type": "ipv6", "rdns": null, "linode_id": 64660677, "region": "us-east", "public":
+ true}, "link_local": {"address": "fe80::f03c:95ff:feb1:6c9d", "gateway": "fe80::1",
+ "subnet_mask": "ffff:ffff:ffff:ffff::", "prefix": 64, "type": "ipv6", "rdns":
+ null, "linode_id": 64660677, "region": "us-east", "public": false}, "global":
+ []}}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "813"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Mon, 30 Sep 2024 21:11:21 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:
+ - "800"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances/64660677
+ 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:
+ - Mon, 30 Sep 2024 21:11:22 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "800"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances/64660675
+ 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:
+ - Mon, 30 Sep 2024 21:11:25 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "800"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/reserved/ips/69.164.211.224
+ 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:
+ - Mon, 30 Sep 2024 21:11:25 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "10"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
diff --git a/test/integration/account_oauth_client_test.go b/test/integration/account_oauth_client_test.go
index 97a51cf8e..1aa951b09 100644
--- a/test/integration/account_oauth_client_test.go
+++ b/test/integration/account_oauth_client_test.go
@@ -4,6 +4,8 @@ import (
"context"
"testing"
+ "github.com/stretchr/testify/assert"
+
"github.com/linode/linodego"
. "github.com/linode/linodego"
)
@@ -68,6 +70,25 @@ func TestOAuthClients_List(t *testing.T) {
}
}
+func TestOAuthClients_Reset(t *testing.T) {
+ createOpts := linodego.OAuthClientCreateOptions{
+ Public: true,
+ RedirectURI: "https://example.com",
+ Label: "go-client-test",
+ }
+ client, oauthClient, teardown, err := setupOAuthClient(t, createOpts, "fixtures/TestOAuthClients_Reset")
+ defer teardown()
+ if err != nil {
+ t.Error(err)
+ }
+ oauthClientAfterReset, err := client.ResetOAuthClientSecret(context.Background(), oauthClient.ID)
+ if err != nil {
+ t.Errorf("Error resetting oauthClient secret, expected struct, got error %v", err)
+ }
+
+ assert.NotEqual(t, oauthClient.Secret, oauthClientAfterReset.Secret, "Secret should have been reset")
+}
+
func setupOAuthClient(t *testing.T, createOpts linodego.OAuthClientCreateOptions, fixturesYaml string) (*linodego.Client, *linodego.OAuthClient, func(), error) {
t.Helper()
client, fixtureTeardown := createTestClient(t, fixturesYaml)
diff --git a/test/integration/account_user_grants_test.go b/test/integration/account_user_grants_test.go
index 4f09d3d00..45cdd0dae 100644
--- a/test/integration/account_user_grants_test.go
+++ b/test/integration/account_user_grants_test.go
@@ -23,17 +23,19 @@ func TestUserGrants_Update(t *testing.T) {
accessLevel := linodego.AccessLevelReadOnly
globalGrants := linodego.GlobalUserGrants{
- AccountAccess: &accessLevel,
- AddDomains: false,
- AddDatabases: true,
- AddFirewalls: true,
- AddImages: true,
- AddLinodes: false,
- AddLongview: true,
- AddNodeBalancers: false,
- AddStackScripts: true,
- AddVolumes: true,
- CancelAccount: false,
+ AccountAccess: &accessLevel,
+ AddDomains: false,
+ AddDatabases: true,
+ AddFirewalls: true,
+ AddImages: true,
+ AddLinodes: false,
+ AddLongview: true,
+ AddNodeBalancers: false,
+ AddPlacementGroups: false,
+ AddStackScripts: true,
+ AddVolumes: true,
+ AddVPCs: true,
+ CancelAccount: false,
}
grants, err := client.UpdateUserGrants(context.TODO(), username, linodego.UserGrantsUpdateOptions{
@@ -83,8 +85,10 @@ func TestUserGrants_UpdateNoAccess(t *testing.T) {
grants.Linode,
grants.Longview,
grants.NodeBalancer,
+ grants.PlacementGroup,
grants.StackScript,
grants.Volume,
+ grants.VPC,
}
for _, grantField := range grantFields {
diff --git a/test/integration/domains_test.go b/test/integration/domains_test.go
index 54da98e20..74342c61e 100644
--- a/test/integration/domains_test.go
+++ b/test/integration/domains_test.go
@@ -107,3 +107,31 @@ func setupDomain(t *testing.T, fixturesYaml string) (*linodego.Client, *linodego
}
return client, domain, teardown, err
}
+
+func TestDomain_Clone_smoke(t *testing.T) {
+ client, domainToClone, teardown, err := setupDomain(t, "fixtures/TestDomain_Clone")
+ if err != nil {
+ t.Errorf("Error creating domain: %v", err)
+ }
+
+ domain, err := client.CloneDomain(context.Background(), domainToClone.ID, linodego.DomainCloneOptions{
+ Domain: "linodego-domain-clone.com",
+ })
+ if err != nil {
+ t.Errorf("Error cloning domain, expected struct, got error %v", err)
+ }
+
+ cloneTeardown := func() {
+ if err := client.DeleteDomain(context.Background(), domain.ID); err != nil {
+ t.Errorf("Expected to delete a domain, but got %v", err)
+ }
+ teardown()
+ }
+
+ defer cloneTeardown()
+
+ // when comparing fixtures to random value Domain will differ
+ if domain.SOAEmail != domainToClone.SOAEmail {
+ t.Errorf("Domain returned does not match domain clone request")
+ }
+}
diff --git a/test/integration/fixtures/TestDomain_Clone.yaml b/test/integration/fixtures/TestDomain_Clone.yaml
new file mode 100644
index 000000000..42cb8a1d1
--- /dev/null
+++ b/test/integration/fixtures/TestDomain_Clone.yaml
@@ -0,0 +1,267 @@
+---
+version: 1
+interactions:
+- request:
+ body: '{"domain":"linodego-blue-test.com","type":"master","soa_email":"example@example.com","master_ips":null,"axfr_ips":null,"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/domains
+ method: POST
+ response:
+ body: '{"id": 3163304, "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"}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "350"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Tue, 19 Nov 2024 15:25:43 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - domains: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:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"domain":"linodego-domain-clone.com"}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/domains/3163304/clone
+ method: POST
+ response:
+ body: '{"id": 3163305, "type": "master", "domain": "linodego-domain-clone.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"}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "353"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Tue, 19 Nov 2024 15:25:45 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - domains: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:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/domains/3163305
+ method: DELETE
+ response:
+ body: '{}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "2"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Tue, 19 Nov 2024 15:25:45 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - domains: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:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/domains/3163304
+ method: DELETE
+ response:
+ body: '{}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "2"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Tue, 19 Nov 2024 15:25:45 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - domains: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:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
diff --git a/test/integration/fixtures/TestIPAddress_GetFound.yaml b/test/integration/fixtures/TestIPAddress_GetFound.yaml
index ac8811353..dfd6d8084 100644
--- a/test/integration/fixtures/TestIPAddress_GetFound.yaml
+++ b/test/integration/fixtures/TestIPAddress_GetFound.yaml
@@ -15,262 +15,241 @@ interactions:
method: GET
response:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.34.5,172.105.35.5,172.105.36.5,172.105.37.5,172.105.38.5,172.105.39.5,172.105.40.5,172.105.41.5,172.105.42.5,172.105.43.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.0.5,172.105.3.5,172.105.4.5,172.105.5.5,172.105.6.5,172.105.7.5,172.105.8.5,172.105.9.5,172.105.10.5,172.105.11.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.166.5,172.105.169.5,172.105.168.5,172.105.172.5,172.105.162.5,172.105.170.5,172.105.167.5,172.105.171.5,172.105.181.5,172.105.161.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-iad", "label": "Washington, DC", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
"Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "139.144.192.62,139.144.192.60,139.144.192.61,139.144.192.53,139.144.192.54,139.144.192.67,139.144.192.69,139.144.192.66,139.144.192.52,139.144.192.68",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
- "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status":
- "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13,
- 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
- "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17,172.232.0.16,172.232.0.21,172.232.0.13,172.232.0.22,172.232.0.9,172.232.0.19,172.232.0.20,172.232.0.15,172.232.0.18",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "fr-par", "label": "Paris, FR", "country":
+ "fr", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.32.21,172.232.32.23,172.232.32.17,172.232.32.18,172.232.32.16,172.232.32.22,172.232.32.20,172.232.32.14,172.232.32.11,172.232.32.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-sea", "label": "Seattle, WA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,172.232.160.21,172.232.160.17,172.232.160.15,172.232.160.18,172.232.160.8,172.232.160.12,172.232.160.11,172.232.160.14,172.232.160.16",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,172.233.0.9,172.233.0.7,172.233.0.12,172.233.0.5,172.233.0.13,172.233.0.10,172.233.0.6,172.233.0.8,172.233.0.11",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
- "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22,
- 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21,
- 172.232.128.27", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25,
- 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18,
- 172.233.111.9", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20,
- 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
- 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
- "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
- 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
- "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32,
- 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
- "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
- 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
- "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
- 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
- "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5,
- 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6":
- "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5,
- 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5,
- 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5,
- 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678,
+ "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.33.36,172.233.33.38,172.233.33.35,172.233.33.39,172.233.33.34,172.233.33.33,172.233.33.31,172.233.33.30,172.233.33.37,172.233.33.32",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.232.128.24,172.232.128.26,172.232.128.20,172.232.128.22,172.232.128.25,172.232.128.19,172.232.128.23,172.232.128.18,172.232.128.21,172.232.128.27",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,172.233.111.17,172.233.111.21,172.233.111.25,172.233.111.19,172.233.111.12,172.233.111.26,172.233.111.16,172.233.111.18,172.233.111.9",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.232.96.17,172.232.96.26,172.232.96.19,172.232.96.20,172.232.96.25,172.232.96.21,172.232.96.18,172.232.96.22,172.232.96.23,172.232.96.24",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.64.44,172.233.64.43,172.233.64.37,172.233.64.40,172.233.64.46,172.233.64.41,172.233.64.39,172.233.64.42,172.233.64.45,172.233.64.38",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "it-mil", "label": "Milan, IT", "country":
+ "it", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.192.19,172.232.192.18,172.232.192.16,172.232.192.20,172.232.192.24,172.232.192.21,172.232.192.22,172.232.192.17,172.232.192.15,172.232.192.23",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-mia", "label": "Miami, FL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.233.160.34,172.233.160.27,172.233.160.30,172.233.160.29,172.233.160.32,172.233.160.28,172.233.160.33,172.233.160.26,172.233.160.25,172.233.160.31",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "id-cgk", "label": "Jakarta, ID", "country":
+ "id", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.224.23,172.232.224.32,172.232.224.26,172.232.224.27,172.232.224.21,172.232.224.24,172.232.224.22,172.232.224.20,172.232.224.31,172.232.224.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-lax", "label": "Los Angeles, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.128.45,172.233.128.38,172.233.128.53,172.233.128.37,172.233.128.34,172.233.128.36,172.233.128.33,172.233.128.39,172.233.128.43,172.233.128.44",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "gb-lon", "label": "London 2, UK", "country":
+ "gb", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country":
+ "au", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-bom-2", "label": "Mumbai 2, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "de-fra-2", "label": "Frankfurt 2, DE", "country":
+ "de", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.203.9,172.236.203.16,172.236.203.19,172.236.203.15,172.236.203.17,172.236.203.11,172.236.203.18,172.236.203.14,172.236.203.13,172.236.203.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "sg-sin-2", "label": "Singapore 2, SG", "country":
+ "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-tyo-3", "label": "Tokyo 3, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "172.237.4.15,172.237.4.19,172.237.4.17,172.237.4.21,172.237.4.16,172.237.4.18,172.237.4.23,172.237.4.24,172.237.4.20,172.237.4.14",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-central", "label": "Dallas, TX", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5,72.14.188.5,173.255.199.5,66.228.53.5,96.126.122.5,96.126.124.5,96.126.127.5,198.58.107.5,198.58.111.5,23.239.24.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-west", "label": "Fremont, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5,
+ 173.230.147.5, 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5,
+ 173.255.244.5, 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
- "Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast",
+ "label": "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "status":
- "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5, 50.116.58.5,
- 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4, 207.192.69.5",
- "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "eu-west", "label": "London, UK", "country": "gb", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5,
+ 96.126.106.5, 50.116.53.5, 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5,
+ 97.107.133.4, 207.192.69.4, 207.192.69.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west",
+ "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
"status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5,
176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20,
109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country":
- "sg", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "139.162.11.5, 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5,
- 139.162.21.5, 139.162.27.5, 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6":
- "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
- Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
- "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
- 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
- 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
- "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5,
- 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6":
- "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}], "page": 1, "pages": 1, "results": 27}'
+ "sg", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,139.162.131.5,139.162.132.5,139.162.133.5,139.162.134.5,139.162.135.5,139.162.136.5,139.162.137.5,139.162.138.5,139.162.139.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-northeast", "label": "Tokyo 2, JP", "country":
+ "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}], "page": 1, "pages": 1, "results": 31}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -282,6 +261,8 @@ interactions:
- '*'
Access-Control-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 +272,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:44 GMT
+ - Wed, 11 Dec 2024 19:17:28 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -310,14 +291,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-g4i782rea04u","firewall_id":640265,"booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-345lbd2b9oa0","firewall_id":1339169,"booted":false}'
form: {}
headers:
Accept:
@@ -329,16 +310,17 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 61169660, "label": "go-test-ins-wo-disk-g4i782rea04u", "group":
+ body: '{"id": 68361091, "label": "go-test-ins-wo-disk-345lbd2b9oa0", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.55.47"], "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":
- "aeb2357ce09e1cb483d94ee0d025f3b254c93dfc", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["194.195.115.4"], "ipv6": "1234::5678/128",
+ "image": null, "region": "ap-west", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm",
+ "watchdog_enabled": true, "tags": [], "host_uuid": "58b502ff98a4081434a97fe5a4f00bb7835d155c",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": []}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -350,24 +332,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:44 GMT
+ - Wed, 11 Dec 2024 19:17:28 GMT
Pragma:
- no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- Authorization, X-Filter
+ - Accept-Encoding
X-Accepted-Oauth-Scopes:
- linodes:read_write
X-Content-Type-Options:
@@ -378,14 +361,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "10"
+ - "8"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-ww37y7em7j73","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-j802bs96jbj2","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -394,10 +377,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169660/configs
+ url: https://api.linode.com/v4beta/linode/instances/68361091/configs
method: POST
response:
- body: '{"id": 64385514, "label": "go-test-conf-ww37y7em7j73", "helpers": {"updatedb_disabled":
+ body: '{"id": 71709940, "label": "go-test-conf-j802bs96jbj2", "helpers": {"updatedb_disabled":
true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
@@ -415,6 +398,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -426,7 +411,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:45 GMT
+ - Wed, 11 Dec 2024 19:17:28 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -443,7 +428,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -459,12 +444,13 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/networking/ips/172.105.55.47
+ url: https://api.linode.com/v4beta/networking/ips/194.195.115.4
method: GET
response:
- body: '{"address": "172.105.55.47", "gateway": "172.105.55.1", "subnet_mask":
- "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "172-105-55-47.ip.linodeusercontent.com",
- "linode_id": 61169660, "region": "ap-west", "vpc_nat_1_1": null}'
+ body: '{"address": "194.195.115.4", "gateway": "194.195.115.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "194-195-115-4.ip.linodeusercontent.com",
+ "linode_id": 68361091, "region": "ap-west", "vpc_nat_1_1": null, "reserved":
+ false}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -476,18 +462,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "248"
+ - "268"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:45 GMT
+ - Wed, 11 Dec 2024 19:17:28 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -505,7 +493,70 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"ap-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/networking/reserved/ips
+ method: POST
+ response:
+ body: '{"address": "172.105.63.218", "gateway": "172.105.63.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "172-105-63-218.ip.linodeusercontent.com",
+ "linode_id": null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "264"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:17:29 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -521,7 +572,132 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169660
+ url: https://api.linode.com/v4beta/networking/ips/172.105.63.218
+ method: GET
+ response:
+ body: '{"address": "172.105.63.218", "gateway": "172.105.63.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "172-105-63-218.ip.linodeusercontent.com",
+ "linode_id": null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "264"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:17:29 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/reserved/ips/172.105.63.218
+ 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:
+ - Wed, 11 Dec 2024 19:17:29 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "10"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ 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/68361091
method: DELETE
response:
body: '{}'
@@ -536,6 +712,8 @@ interactions:
- '*'
Access-Control-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 +725,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:45 GMT
+ - Wed, 11 Dec 2024 19:17:31 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -564,7 +742,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
diff --git a/test/integration/fixtures/TestIPAddress_GetMissing.yaml b/test/integration/fixtures/TestIPAddress_GetMissing.yaml
index f428f3b0d..96aa7e358 100644
--- a/test/integration/fixtures/TestIPAddress_GetMissing.yaml
+++ b/test/integration/fixtures/TestIPAddress_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:
- - Mon, 08 Jul 2024 13:31:44 GMT
+ - Wed, 11 Dec 2024 19:17:27 GMT
Pragma:
- no-cache
Vary:
@@ -43,7 +45,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
status: 404 Not Found
code: 404
duration: ""
diff --git a/test/integration/fixtures/TestIPAddress_Instance_Allocate.yaml b/test/integration/fixtures/TestIPAddress_Instance_Allocate.yaml
new file mode 100644
index 000000000..581f70e74
--- /dev/null
+++ b/test/integration/fixtures/TestIPAddress_Instance_Allocate.yaml
@@ -0,0 +1,1355 @@
+---
+version: 1
+interactions:
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/regions?page=1
+ method: GET
+ response:
+ body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.34.5,172.105.35.5,172.105.36.5,172.105.37.5,172.105.38.5,172.105.39.5,172.105.40.5,172.105.41.5,172.105.42.5,172.105.43.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.0.5,172.105.3.5,172.105.4.5,172.105.5.5,172.105.6.5,172.105.7.5,172.105.8.5,172.105.9.5,172.105.10.5,172.105.11.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.166.5,172.105.169.5,172.105.168.5,172.105.172.5,172.105.162.5,172.105.170.5,172.105.167.5,172.105.171.5,172.105.181.5,172.105.161.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-iad", "label": "Washington, DC", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "139.144.192.62,139.144.192.60,139.144.192.61,139.144.192.53,139.144.192.54,139.144.192.67,139.144.192.69,139.144.192.66,139.144.192.52,139.144.192.68",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17,172.232.0.16,172.232.0.21,172.232.0.13,172.232.0.22,172.232.0.9,172.232.0.19,172.232.0.20,172.232.0.15,172.232.0.18",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "fr-par", "label": "Paris, FR", "country":
+ "fr", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.32.21,172.232.32.23,172.232.32.17,172.232.32.18,172.232.32.16,172.232.32.22,172.232.32.20,172.232.32.14,172.232.32.11,172.232.32.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-sea", "label": "Seattle, WA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,172.232.160.21,172.232.160.17,172.232.160.15,172.232.160.18,172.232.160.8,172.232.160.12,172.232.160.11,172.232.160.14,172.232.160.16",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,172.233.0.9,172.233.0.7,172.233.0.12,172.233.0.5,172.233.0.13,172.233.0.10,172.233.0.6,172.233.0.8,172.233.0.11",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
+ "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.33.36,172.233.33.38,172.233.33.35,172.233.33.39,172.233.33.34,172.233.33.33,172.233.33.31,172.233.33.30,172.233.33.37,172.233.33.32",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.232.128.24,172.232.128.26,172.232.128.20,172.232.128.22,172.232.128.25,172.232.128.19,172.232.128.23,172.232.128.18,172.232.128.21,172.232.128.27",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,172.233.111.17,172.233.111.21,172.233.111.25,172.233.111.19,172.233.111.12,172.233.111.26,172.233.111.16,172.233.111.18,172.233.111.9",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.232.96.17,172.232.96.26,172.232.96.19,172.232.96.20,172.232.96.25,172.232.96.21,172.232.96.18,172.232.96.22,172.232.96.23,172.232.96.24",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.64.44,172.233.64.43,172.233.64.37,172.233.64.40,172.233.64.46,172.233.64.41,172.233.64.39,172.233.64.42,172.233.64.45,172.233.64.38",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "it-mil", "label": "Milan, IT", "country":
+ "it", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.192.19,172.232.192.18,172.232.192.16,172.232.192.20,172.232.192.24,172.232.192.21,172.232.192.22,172.232.192.17,172.232.192.15,172.232.192.23",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-mia", "label": "Miami, FL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.233.160.34,172.233.160.27,172.233.160.30,172.233.160.29,172.233.160.32,172.233.160.28,172.233.160.33,172.233.160.26,172.233.160.25,172.233.160.31",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "id-cgk", "label": "Jakarta, ID", "country":
+ "id", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.224.23,172.232.224.32,172.232.224.26,172.232.224.27,172.232.224.21,172.232.224.24,172.232.224.22,172.232.224.20,172.232.224.31,172.232.224.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-lax", "label": "Los Angeles, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.128.45,172.233.128.38,172.233.128.53,172.233.128.37,172.233.128.34,172.233.128.36,172.233.128.33,172.233.128.39,172.233.128.43,172.233.128.44",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "gb-lon", "label": "London 2, UK", "country":
+ "gb", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country":
+ "au", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-bom-2", "label": "Mumbai 2, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "de-fra-2", "label": "Frankfurt 2, DE", "country":
+ "de", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.203.9,172.236.203.16,172.236.203.19,172.236.203.15,172.236.203.17,172.236.203.11,172.236.203.18,172.236.203.14,172.236.203.13,172.236.203.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "sg-sin-2", "label": "Singapore 2, SG", "country":
+ "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-tyo-3", "label": "Tokyo 3, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "172.237.4.15,172.237.4.19,172.237.4.17,172.237.4.21,172.237.4.16,172.237.4.18,172.237.4.23,172.237.4.24,172.237.4.20,172.237.4.14",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-central", "label": "Dallas, TX", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5,72.14.188.5,173.255.199.5,66.228.53.5,96.126.122.5,96.126.124.5,96.126.127.5,198.58.107.5,198.58.111.5,23.239.24.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-west", "label": "Fremont, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5,
+ 173.230.147.5, 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5,
+ 173.255.244.5, 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast",
+ "label": "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5,
+ 96.126.106.5, 50.116.53.5, 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5,
+ 97.107.133.4, 207.192.69.4, 207.192.69.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west",
+ "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5,
+ 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20,
+ 109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country":
+ "sg", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,139.162.131.5,139.162.132.5,139.162.133.5,139.162.134.5,139.162.135.5,139.162.136.5,139.162.137.5,139.162.138.5,139.162.139.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-northeast", "label": "Tokyo 2, JP", "country":
+ "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}], "page": 1, "pages": 1, "results": 31}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:07 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ - Accept-Encoding
+ X-Accepted-Oauth-Scopes:
+ - '*'
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-gac4b1uu3508","firewall_id":1339169,"booted":false}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances
+ method: POST
+ response:
+ body: '{"id": 68361125, "label": "go-test-ins-wo-disk-gac4b1uu3508", "group":
+ "", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "type": "g6-nanode-1", "ipv4": ["194.195.115.69"], "ipv6": "1234::5678/128",
+ "image": null, "region": "ap-west", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm",
+ "watchdog_enabled": true, "tags": [], "host_uuid": "01784ea8e192a750c6c467dd1051931900d026c2",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": []}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:08 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Accept-Encoding
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "8"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"label":"go-test-conf-6w994qdpo09d","devices":{},"interfaces":null}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances/68361125/configs
+ method: POST
+ response:
+ body: '{"id": 71709967, "label": "go-test-conf-6w994qdpo09d", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
+ "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
+ "devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
+ "sdf": null, "sdg": null, "sdh": null}, "initrd": null, "run_level": "default",
+ "virt_mode": "paravirt", "interfaces": []}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "539"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:08 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"type":"ipv4","public":true,"reserved":true,"region":"ap-west","linode_id":68361125}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips
+ method: POST
+ response:
+ body: '{"address": "172.105.63.218", "gateway": "172.105.63.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "172-105-63-218.ip.linodeusercontent.com",
+ "linode_id": 68361125, "region": "ap-west", "vpc_nat_1_1": null, "reserved":
+ true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "268"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:08 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"type":"ipv4","public":true,"reserved":true,"region":"ap-west","linode_id":99999}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips
+ method: POST
+ response:
+ body: '{"errors": [{"reason": "Linode is not active", "field": "linode_id"}]}'
+ 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
+ Content-Length:
+ - "70"
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:08 GMT
+ Pragma:
+ - no-cache
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Frame-Options:
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ status: 400 Bad Request
+ code: 400
+ duration: ""
+- request:
+ body: '{"type":"ipv4","public":true,"reserved":true,"region":"ap-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/networking/ips
+ method: POST
+ response:
+ body: '{"address": "194.195.119.214", "gateway": "194.195.119.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "194-195-119-214.ip.linodeusercontent.com",
+ "linode_id": null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "267"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:09 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"type":"ipv4","public":true,"reserved":true,"linode_id":68361125}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips
+ method: POST
+ response:
+ body: '{"address": "172.105.49.99", "gateway": "172.105.49.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "172-105-49-99.ip.linodeusercontent.com",
+ "linode_id": 68361125, "region": "ap-west", "vpc_nat_1_1": null, "reserved":
+ true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "266"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:09 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/reserved/ips/172.105.49.99
+ 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:
+ - Wed, 11 Dec 2024 19:18:09 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "10"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"type":"ipv4","public":true,"reserved":true}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips
+ method: POST
+ response:
+ body: '{"errors": [{"reason": "A datacenter or a Linode must be provided when
+ reserving an address."}]}'
+ 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
+ Content-Length:
+ - "96"
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:09 GMT
+ Pragma:
+ - no-cache
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Frame-Options:
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ status: 400 Bad Request
+ code: 400
+ duration: ""
+- request:
+ body: '{"type":"ipv4","public":false,"reserved":true,"region":"ap-west","linode_id":68361125}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips
+ method: POST
+ response:
+ body: '{"errors": [{"reason": "Cannot reserve a private address.", "field": "public"}]}'
+ 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
+ Content-Length:
+ - "80"
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:09 GMT
+ Pragma:
+ - no-cache
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Frame-Options:
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ status: 400 Bad Request
+ code: 400
+ duration: ""
+- request:
+ body: '{"type":"ipv4","public":true,"region":"ap-west","linode_id":68361125}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips
+ method: POST
+ response:
+ body: '{"address": "194.195.115.71", "gateway": "194.195.115.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "194-195-115-71.ip.linodeusercontent.com",
+ "linode_id": 68361125, "region": "ap-west", "vpc_nat_1_1": null, "reserved":
+ false}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "270"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:10 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances/68361125/ips/194.195.115.71
+ 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:
+ - Wed, 11 Dec 2024 19:18:10 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"type":"ipv4","public":true,"region":"ap-west","linode_id":68361125}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips
+ method: POST
+ response:
+ body: '{"address": "194.195.115.79", "gateway": "194.195.115.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "194-195-115-79.ip.linodeusercontent.com",
+ "linode_id": 68361125, "region": "ap-west", "vpc_nat_1_1": null, "reserved":
+ false}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "270"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:10 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances/68361125/ips/194.195.115.79
+ 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:
+ - Wed, 11 Dec 2024 19:18:10 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"type":"ipv4","public":true,"region":"ap-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/networking/ips
+ method: POST
+ response:
+ body: '{"errors": [{"reason": "Linode is a required argument when not reserving
+ an IP address.", "field": "linode_id"}]}'
+ 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
+ Content-Length:
+ - "113"
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:10 GMT
+ Pragma:
+ - no-cache
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Frame-Options:
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ status: 400 Bad Request
+ code: 400
+ duration: ""
+- request:
+ body: '{"type":"ipv4","public":true,"region":"ap-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/networking/ips
+ method: POST
+ response:
+ body: '{"errors": [{"reason": "Linode is a required argument when not reserving
+ an IP address.", "field": "linode_id"}]}'
+ 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
+ Content-Length:
+ - "113"
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:10 GMT
+ Pragma:
+ - no-cache
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Frame-Options:
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ status: 400 Bad Request
+ code: 400
+ duration: ""
+- request:
+ body: '{"type":"ipv6","public":true,"reserved":true,"region":"ap-west","linode_id":68361125}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips
+ method: POST
+ response:
+ body: '{"errors": [{"reason": "Only addresses of type ipv4 are currently supported."}]}'
+ 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
+ Content-Length:
+ - "80"
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:11 GMT
+ Pragma:
+ - no-cache
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Frame-Options:
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ status: 400 Bad Request
+ code: 400
+ duration: ""
+- request:
+ body: '{"type":"ipv6","public":true,"region":"ap-west","linode_id":68361125}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips
+ method: POST
+ response:
+ body: '{"errors": [{"reason": "Only addresses of type ipv4 are currently supported."}]}'
+ 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
+ Content-Length:
+ - "80"
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:11 GMT
+ Pragma:
+ - no-cache
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Frame-Options:
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ status: 400 Bad Request
+ code: 400
+ duration: ""
+- request:
+ body: '{"type":"ipv4","public":true,"reserved":true,"region":"us-west","linode_id":68361125}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips
+ method: POST
+ response:
+ body: '{"errors": [{"reason": "Region passed in must match Linode''s region.",
+ "field": "region"}]}'
+ 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
+ Content-Length:
+ - "91"
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:11 GMT
+ Pragma:
+ - no-cache
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Frame-Options:
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ status: 400 Bad Request
+ code: 400
+ duration: ""
+- request:
+ body: ""
+ 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/68361125
+ 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:
+ - Wed, 11 Dec 2024 19:18:13 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
diff --git a/test/integration/fixtures/TestIPAddress_Instance_Assign.yaml b/test/integration/fixtures/TestIPAddress_Instance_Assign.yaml
index a60ff79d2..4ef1754a2 100644
--- a/test/integration/fixtures/TestIPAddress_Instance_Assign.yaml
+++ b/test/integration/fixtures/TestIPAddress_Instance_Assign.yaml
@@ -15,262 +15,241 @@ interactions:
method: GET
response:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.34.5,172.105.35.5,172.105.36.5,172.105.37.5,172.105.38.5,172.105.39.5,172.105.40.5,172.105.41.5,172.105.42.5,172.105.43.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.0.5,172.105.3.5,172.105.4.5,172.105.5.5,172.105.6.5,172.105.7.5,172.105.8.5,172.105.9.5,172.105.10.5,172.105.11.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.166.5,172.105.169.5,172.105.168.5,172.105.172.5,172.105.162.5,172.105.170.5,172.105.167.5,172.105.171.5,172.105.181.5,172.105.161.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-iad", "label": "Washington, DC", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
"Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "139.144.192.62,139.144.192.60,139.144.192.61,139.144.192.53,139.144.192.54,139.144.192.67,139.144.192.69,139.144.192.66,139.144.192.52,139.144.192.68",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
- "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status":
- "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13,
- 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
- "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17,172.232.0.16,172.232.0.21,172.232.0.13,172.232.0.22,172.232.0.9,172.232.0.19,172.232.0.20,172.232.0.15,172.232.0.18",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "fr-par", "label": "Paris, FR", "country":
+ "fr", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.32.21,172.232.32.23,172.232.32.17,172.232.32.18,172.232.32.16,172.232.32.22,172.232.32.20,172.232.32.14,172.232.32.11,172.232.32.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-sea", "label": "Seattle, WA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,172.232.160.21,172.232.160.17,172.232.160.15,172.232.160.18,172.232.160.8,172.232.160.12,172.232.160.11,172.232.160.14,172.232.160.16",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,172.233.0.9,172.233.0.7,172.233.0.12,172.233.0.5,172.233.0.13,172.233.0.10,172.233.0.6,172.233.0.8,172.233.0.11",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
- "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22,
- 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21,
- 172.232.128.27", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25,
- 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18,
- 172.233.111.9", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20,
- 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
- 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
- "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
- 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
- "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32,
- 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
- "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
- 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
- "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
- 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
- "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5,
- 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6":
- "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5,
- 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5,
- 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5,
- 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678,
+ "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.33.36,172.233.33.38,172.233.33.35,172.233.33.39,172.233.33.34,172.233.33.33,172.233.33.31,172.233.33.30,172.233.33.37,172.233.33.32",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.232.128.24,172.232.128.26,172.232.128.20,172.232.128.22,172.232.128.25,172.232.128.19,172.232.128.23,172.232.128.18,172.232.128.21,172.232.128.27",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,172.233.111.17,172.233.111.21,172.233.111.25,172.233.111.19,172.233.111.12,172.233.111.26,172.233.111.16,172.233.111.18,172.233.111.9",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.232.96.17,172.232.96.26,172.232.96.19,172.232.96.20,172.232.96.25,172.232.96.21,172.232.96.18,172.232.96.22,172.232.96.23,172.232.96.24",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.64.44,172.233.64.43,172.233.64.37,172.233.64.40,172.233.64.46,172.233.64.41,172.233.64.39,172.233.64.42,172.233.64.45,172.233.64.38",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "it-mil", "label": "Milan, IT", "country":
+ "it", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.192.19,172.232.192.18,172.232.192.16,172.232.192.20,172.232.192.24,172.232.192.21,172.232.192.22,172.232.192.17,172.232.192.15,172.232.192.23",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-mia", "label": "Miami, FL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.233.160.34,172.233.160.27,172.233.160.30,172.233.160.29,172.233.160.32,172.233.160.28,172.233.160.33,172.233.160.26,172.233.160.25,172.233.160.31",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "id-cgk", "label": "Jakarta, ID", "country":
+ "id", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.224.23,172.232.224.32,172.232.224.26,172.232.224.27,172.232.224.21,172.232.224.24,172.232.224.22,172.232.224.20,172.232.224.31,172.232.224.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-lax", "label": "Los Angeles, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.128.45,172.233.128.38,172.233.128.53,172.233.128.37,172.233.128.34,172.233.128.36,172.233.128.33,172.233.128.39,172.233.128.43,172.233.128.44",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "gb-lon", "label": "London 2, UK", "country":
+ "gb", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country":
+ "au", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-bom-2", "label": "Mumbai 2, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "de-fra-2", "label": "Frankfurt 2, DE", "country":
+ "de", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.203.9,172.236.203.16,172.236.203.19,172.236.203.15,172.236.203.17,172.236.203.11,172.236.203.18,172.236.203.14,172.236.203.13,172.236.203.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "sg-sin-2", "label": "Singapore 2, SG", "country":
+ "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-tyo-3", "label": "Tokyo 3, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "172.237.4.15,172.237.4.19,172.237.4.17,172.237.4.21,172.237.4.16,172.237.4.18,172.237.4.23,172.237.4.24,172.237.4.20,172.237.4.14",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-central", "label": "Dallas, TX", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5,72.14.188.5,173.255.199.5,66.228.53.5,96.126.122.5,96.126.124.5,96.126.127.5,198.58.107.5,198.58.111.5,23.239.24.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-west", "label": "Fremont, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5,
+ 173.230.147.5, 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5,
+ 173.255.244.5, 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
- "Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast",
+ "label": "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "status":
- "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5, 50.116.58.5,
- 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4, 207.192.69.5",
- "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "eu-west", "label": "London, UK", "country": "gb", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5,
+ 96.126.106.5, 50.116.53.5, 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5,
+ 97.107.133.4, 207.192.69.4, 207.192.69.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west",
+ "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
"status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5,
176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20,
109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country":
- "sg", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "139.162.11.5, 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5,
- 139.162.21.5, 139.162.27.5, 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6":
- "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
- Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
- "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
- 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
- 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
- "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5,
- 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6":
- "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}], "page": 1, "pages": 1, "results": 27}'
+ "sg", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,139.162.131.5,139.162.132.5,139.162.133.5,139.162.134.5,139.162.135.5,139.162.136.5,139.162.137.5,139.162.138.5,139.162.139.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-northeast", "label": "Tokyo 2, JP", "country":
+ "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}], "page": 1, "pages": 1, "results": 31}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -282,6 +261,8 @@ interactions:
- '*'
Access-Control-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 +272,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:54 GMT
+ - Wed, 11 Dec 2024 19:17:52 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -310,56 +291,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-915nlu024uos","firewall_id":640265,"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:
- - '*'
- Cache-Control:
- - max-age=0, no-cache, no-store
- Content-Length:
- - "45"
- Content-Type:
- - application/json
- Expires:
- - Mon, 08 Jul 2024 13:31:54 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-915nlu024uos","firewall_id":640265,"booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-73tk8v01r1wb","firewall_id":1339169,"booted":false}'
form: {}
headers:
Accept:
@@ -371,58 +310,17 @@ interactions:
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:
- - '*'
- Cache-Control:
- - max-age=0, no-cache, no-store
- Content-Length:
- - "45"
- Content-Type:
- - application/json
- Expires:
- - Mon, 08 Jul 2024 13:31:57 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-915nlu024uos","firewall_id":640265,"booted":false}'
- form: {}
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances
- method: POST
- response:
- body: '{"id": 61169671, "label": "go-test-ins-wo-disk-915nlu024uos", "group":
+ body: '{"id": 68361111, "label": "go-test-ins-wo-disk-73tk8v01r1wb", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.55.46"], "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":
- "aeb2357ce09e1cb483d94ee0d025f3b254c93dfc", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["194.195.115.27"], "ipv6": "1234::5678/128",
+ "image": null, "region": "ap-west", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm",
+ "watchdog_enabled": true, "tags": [], "host_uuid": "58b502ff98a4081434a97fe5a4f00bb7835d155c",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": []}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -434,24 +332,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:32:03 GMT
+ - Wed, 11 Dec 2024 19:17:53 GMT
Pragma:
- no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- Authorization, X-Filter
+ - Accept-Encoding
X-Accepted-Oauth-Scopes:
- linodes:read_write
X-Content-Type-Options:
@@ -462,14 +361,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "10"
+ - "8"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-lw741q6c1u2q","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-b22sgyg34t80","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -478,10 +377,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169671/configs
+ url: https://api.linode.com/v4beta/linode/instances/68361111/configs
method: POST
response:
- body: '{"id": 64385533, "label": "go-test-conf-lw741q6c1u2q", "helpers": {"updatedb_disabled":
+ body: '{"id": 71709954, "label": "go-test-conf-b22sgyg34t80", "helpers": {"updatedb_disabled":
true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
@@ -499,6 +398,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -510,7 +411,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:32:03 GMT
+ - Wed, 11 Dec 2024 19:17:53 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -527,14 +428,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-ins-test-assign","root_pass":"\u003cCE(U\u0026(m9jC9guMJ795L0,cW^x4U*26T3#9`b-5*Gx[S3aIp-3\u003ew5zrHRt,On6?f","image":"linode/debian9","firewall_id":640265,"booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-ins-test-assign","root_pass":"te\u003cJA0h{3G!-S167M4VoR1qB:oK@W5ZH3y97)k5t2+(r`zFJa:7\u003cki\u0026}jh,N89D|","image":"linode/debian12","firewall_id":1339169,"booted":false}'
form: {}
headers:
Accept:
@@ -546,16 +447,17 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 61169673, "label": "go-ins-test-assign", "group": "", "status":
+ body: '{"id": 68361113, "label": "go-ins-test-assign", "group": "", "status":
"provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.55.151"], "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":
- "8bb24924c0b481c3ae3a41bf5819194b366c512d", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["194.195.115.33"], "ipv6": "1234::5678/128",
+ "image": "linode/debian12", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm",
+ "watchdog_enabled": true, "tags": [], "host_uuid": "e2551e83bb2abde04e4b5c778193e1c642125379",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": []}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -567,24 +469,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:32:04 GMT
+ - Wed, 11 Dec 2024 19:17:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- Authorization, X-Filter
+ - Accept-Encoding
X-Accepted-Oauth-Scopes:
- linodes:read_write
X-Content-Type-Options:
@@ -595,14 +498,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "10"
+ - "8"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"linode_id":61169673,"prefix_length":64}'
+ body: '{"linode_id":68361113,"prefix_length":64}'
form: {}
headers:
Accept:
@@ -626,6 +529,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -637,7 +542,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:32:04 GMT
+ - Wed, 11 Dec 2024 19:17:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -654,14 +559,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","assignments":[{"address":"1234::5678/64","linode_id":61169671}]}'
+ body: '{"region":"ap-west","assignments":[{"address":"1234::5678/64","linode_id":68361111}]}'
form: {}
headers:
Accept:
@@ -685,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:
@@ -696,7 +603,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:32:04 GMT
+ - Wed, 11 Dec 2024 19:17:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -713,7 +620,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -729,19 +636,19 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169671/ips
+ url: https://api.linode.com/v4beta/linode/instances/68361111/ips
method: GET
response:
- body: '{"ipv4": {"public": [{"address": "172.105.55.46", "gateway": "172.105.55.1",
+ body: '{"ipv4": {"public": [{"address": "194.195.115.27", "gateway": "194.195.115.1",
"subnet_mask": "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true,
- "rdns": "172-105-55-46.ip.linodeusercontent.com", "linode_id": 61169671, "region":
- "ap-west", "vpc_nat_1_1": null}], "private": [], "shared": [], "reserved": [],
- "vpc": []}, "ipv6": {"slaac": {"address": "1234::5678",
+ "rdns": "194-195-115-27.ip.linodeusercontent.com", "linode_id": 68361111, "region":
+ "ap-west", "vpc_nat_1_1": null, "reserved": false}], "private": [], "shared":
+ [], "reserved": [], "vpc": []}, "ipv6": {"slaac": {"address": "1234::5678",
"gateway": "1234::5678", "subnet_mask": "1234::5678", "prefix": 64,
- "type": "ipv6", "rdns": null, "linode_id": 61169671, "region": "ap-west", "public":
+ "type": "ipv6", "rdns": null, "linode_id": 68361111, "region": "ap-west", "public":
true}, "link_local": {"address": "1234::5678", "gateway": "1234::5678",
"subnet_mask": "1234::5678", "prefix": 64, "type": "ipv6", "rdns":
- null, "linode_id": 61169671, "region": "ap-west", "public": false}, "global":
+ null, "linode_id": 68361111, "region": "ap-west", "public": false}, "global":
[{"range": "1234::5678", "prefix": 64, "region": "ap-west", "route_target":
"1234::5678"}]}}'
headers:
@@ -755,6 +662,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -764,7 +673,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:32:04 GMT
+ - Wed, 11 Dec 2024 19:17:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -783,7 +692,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -799,7 +708,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169673
+ url: https://api.linode.com/v4beta/linode/instances/68361113
method: DELETE
response:
body: '{}'
@@ -814,6 +723,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -825,7 +736,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:32:04 GMT
+ - Wed, 11 Dec 2024 19:17:57 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -842,7 +753,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -858,7 +769,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169671
+ url: https://api.linode.com/v4beta/linode/instances/68361111
method: DELETE
response:
body: '{}'
@@ -873,6 +784,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -884,7 +797,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:32:05 GMT
+ - Wed, 11 Dec 2024 19:17:59 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -901,7 +814,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
diff --git a/test/integration/fixtures/TestIPAddress_Instance_Delete.yaml b/test/integration/fixtures/TestIPAddress_Instance_Delete.yaml
index 805a3129c..b3fe63f9c 100644
--- a/test/integration/fixtures/TestIPAddress_Instance_Delete.yaml
+++ b/test/integration/fixtures/TestIPAddress_Instance_Delete.yaml
@@ -15,262 +15,241 @@ interactions:
method: GET
response:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.34.5,172.105.35.5,172.105.36.5,172.105.37.5,172.105.38.5,172.105.39.5,172.105.40.5,172.105.41.5,172.105.42.5,172.105.43.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.0.5,172.105.3.5,172.105.4.5,172.105.5.5,172.105.6.5,172.105.7.5,172.105.8.5,172.105.9.5,172.105.10.5,172.105.11.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.166.5,172.105.169.5,172.105.168.5,172.105.172.5,172.105.162.5,172.105.170.5,172.105.167.5,172.105.171.5,172.105.181.5,172.105.161.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-iad", "label": "Washington, DC", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
"Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "139.144.192.62,139.144.192.60,139.144.192.61,139.144.192.53,139.144.192.54,139.144.192.67,139.144.192.69,139.144.192.66,139.144.192.52,139.144.192.68",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
- "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status":
- "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13,
- 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
- "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17,172.232.0.16,172.232.0.21,172.232.0.13,172.232.0.22,172.232.0.9,172.232.0.19,172.232.0.20,172.232.0.15,172.232.0.18",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "fr-par", "label": "Paris, FR", "country":
+ "fr", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.32.21,172.232.32.23,172.232.32.17,172.232.32.18,172.232.32.16,172.232.32.22,172.232.32.20,172.232.32.14,172.232.32.11,172.232.32.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-sea", "label": "Seattle, WA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,172.232.160.21,172.232.160.17,172.232.160.15,172.232.160.18,172.232.160.8,172.232.160.12,172.232.160.11,172.232.160.14,172.232.160.16",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,172.233.0.9,172.233.0.7,172.233.0.12,172.233.0.5,172.233.0.13,172.233.0.10,172.233.0.6,172.233.0.8,172.233.0.11",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
- "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22,
- 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21,
- 172.232.128.27", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25,
- 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18,
- 172.233.111.9", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20,
- 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
- 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
- "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
- 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
- "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32,
- 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
- "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
- 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
- "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
- 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
- "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5,
- 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6":
- "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5,
- 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5,
- 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5,
- 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678,
+ "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.33.36,172.233.33.38,172.233.33.35,172.233.33.39,172.233.33.34,172.233.33.33,172.233.33.31,172.233.33.30,172.233.33.37,172.233.33.32",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.232.128.24,172.232.128.26,172.232.128.20,172.232.128.22,172.232.128.25,172.232.128.19,172.232.128.23,172.232.128.18,172.232.128.21,172.232.128.27",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,172.233.111.17,172.233.111.21,172.233.111.25,172.233.111.19,172.233.111.12,172.233.111.26,172.233.111.16,172.233.111.18,172.233.111.9",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.232.96.17,172.232.96.26,172.232.96.19,172.232.96.20,172.232.96.25,172.232.96.21,172.232.96.18,172.232.96.22,172.232.96.23,172.232.96.24",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.64.44,172.233.64.43,172.233.64.37,172.233.64.40,172.233.64.46,172.233.64.41,172.233.64.39,172.233.64.42,172.233.64.45,172.233.64.38",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "it-mil", "label": "Milan, IT", "country":
+ "it", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.192.19,172.232.192.18,172.232.192.16,172.232.192.20,172.232.192.24,172.232.192.21,172.232.192.22,172.232.192.17,172.232.192.15,172.232.192.23",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-mia", "label": "Miami, FL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.233.160.34,172.233.160.27,172.233.160.30,172.233.160.29,172.233.160.32,172.233.160.28,172.233.160.33,172.233.160.26,172.233.160.25,172.233.160.31",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "id-cgk", "label": "Jakarta, ID", "country":
+ "id", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.224.23,172.232.224.32,172.232.224.26,172.232.224.27,172.232.224.21,172.232.224.24,172.232.224.22,172.232.224.20,172.232.224.31,172.232.224.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-lax", "label": "Los Angeles, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.128.45,172.233.128.38,172.233.128.53,172.233.128.37,172.233.128.34,172.233.128.36,172.233.128.33,172.233.128.39,172.233.128.43,172.233.128.44",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "gb-lon", "label": "London 2, UK", "country":
+ "gb", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country":
+ "au", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-bom-2", "label": "Mumbai 2, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "de-fra-2", "label": "Frankfurt 2, DE", "country":
+ "de", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.203.9,172.236.203.16,172.236.203.19,172.236.203.15,172.236.203.17,172.236.203.11,172.236.203.18,172.236.203.14,172.236.203.13,172.236.203.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "sg-sin-2", "label": "Singapore 2, SG", "country":
+ "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-tyo-3", "label": "Tokyo 3, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "172.237.4.15,172.237.4.19,172.237.4.17,172.237.4.21,172.237.4.16,172.237.4.18,172.237.4.23,172.237.4.24,172.237.4.20,172.237.4.14",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-central", "label": "Dallas, TX", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5,72.14.188.5,173.255.199.5,66.228.53.5,96.126.122.5,96.126.124.5,96.126.127.5,198.58.107.5,198.58.111.5,23.239.24.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-west", "label": "Fremont, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5,
+ 173.230.147.5, 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5,
+ 173.255.244.5, 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
- "Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast",
+ "label": "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "status":
- "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5, 50.116.58.5,
- 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4, 207.192.69.5",
- "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "eu-west", "label": "London, UK", "country": "gb", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5,
+ 96.126.106.5, 50.116.53.5, 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5,
+ 97.107.133.4, 207.192.69.4, 207.192.69.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west",
+ "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
"status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5,
176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20,
109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country":
- "sg", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "139.162.11.5, 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5,
- 139.162.21.5, 139.162.27.5, 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6":
- "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
- Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
- "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
- 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
- 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
- "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5,
- 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6":
- "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}], "page": 1, "pages": 1, "results": 27}'
+ "sg", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,139.162.131.5,139.162.132.5,139.162.133.5,139.162.134.5,139.162.135.5,139.162.136.5,139.162.137.5,139.162.138.5,139.162.139.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-northeast", "label": "Tokyo 2, JP", "country":
+ "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}], "page": 1, "pages": 1, "results": 31}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -282,6 +261,8 @@ interactions:
- '*'
Access-Control-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 +272,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:52 GMT
+ - Wed, 11 Dec 2024 19:17:49 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -310,14 +291,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-57sydhr2g796","firewall_id":640265,"booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-137dninw93h7","firewall_id":1339169,"booted":false}'
form: {}
headers:
Accept:
@@ -329,16 +310,17 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 61169670, "label": "go-test-ins-wo-disk-57sydhr2g796", "group":
+ body: '{"id": 68361109, "label": "go-test-ins-wo-disk-137dninw93h7", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.55.118"], "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":
- "aeb2357ce09e1cb483d94ee0d025f3b254c93dfc", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["194.195.115.17"], "ipv6": "1234::5678/128",
+ "image": null, "region": "ap-west", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm",
+ "watchdog_enabled": true, "tags": [], "host_uuid": "58b502ff98a4081434a97fe5a4f00bb7835d155c",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": []}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -350,24 +332,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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, 08 Jul 2024 13:31:52 GMT
+ - Wed, 11 Dec 2024 19:17:49 GMT
Pragma:
- no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- Authorization, X-Filter
+ - Accept-Encoding
X-Accepted-Oauth-Scopes:
- linodes:read_write
X-Content-Type-Options:
@@ -378,14 +361,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "10"
+ - "8"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-3f15v6kx8e2m","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-n69rvyg8v263","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -394,10 +377,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169670/configs
+ url: https://api.linode.com/v4beta/linode/instances/68361109/configs
method: POST
response:
- body: '{"id": 64385524, "label": "go-test-conf-3f15v6kx8e2m", "helpers": {"updatedb_disabled":
+ body: '{"id": 71709953, "label": "go-test-conf-n69rvyg8v263", "helpers": {"updatedb_disabled":
true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
@@ -415,6 +398,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -426,7 +411,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:52 GMT
+ - Wed, 11 Dec 2024 19:17:49 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -443,7 +428,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -459,12 +444,13 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169670/ips
+ url: https://api.linode.com/v4beta/linode/instances/68361109/ips
method: POST
response:
- body: '{"address": "172.105.55.46", "gateway": "172.105.55.1", "subnet_mask":
- "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "172-105-55-46.ip.linodeusercontent.com",
- "linode_id": 61169670, "region": "ap-west", "vpc_nat_1_1": null}'
+ body: '{"address": "194.195.115.18", "gateway": "194.195.115.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "194-195-115-18.ip.linodeusercontent.com",
+ "linode_id": 68361109, "region": "ap-west", "vpc_nat_1_1": null, "reserved":
+ false}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -476,18 +462,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "248"
+ - "270"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:52 GMT
+ - Wed, 11 Dec 2024 19:17:49 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -504,7 +492,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -520,23 +508,23 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169670/ips
+ url: https://api.linode.com/v4beta/linode/instances/68361109/ips
method: GET
response:
- body: '{"ipv4": {"public": [{"address": "172.105.55.46", "gateway": "172.105.55.1",
- "subnet_mask": "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true,
- "rdns": "172-105-55-46.ip.linodeusercontent.com", "linode_id": 61169670, "region":
- "ap-west", "vpc_nat_1_1": null}, {"address": "172.105.55.118", "gateway": "172.105.55.1",
+ body: '{"ipv4": {"public": [{"address": "194.195.115.17", "gateway": "194.195.115.1",
"subnet_mask": "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true,
- "rdns": "172-105-55-118.ip.linodeusercontent.com", "linode_id": 61169670, "region":
- "ap-west", "vpc_nat_1_1": null}], "private": [], "shared": [], "reserved": [],
- "vpc": []}, "ipv6": {"slaac": {"address": "1234::5678",
+ "rdns": "194-195-115-17.ip.linodeusercontent.com", "linode_id": 68361109, "region":
+ "ap-west", "vpc_nat_1_1": null, "reserved": false}, {"address": "194.195.115.18",
+ "gateway": "194.195.115.1", "subnet_mask": "255.255.255.0", "prefix": 24, "type":
+ "ipv4", "public": true, "rdns": "194-195-115-18.ip.linodeusercontent.com", "linode_id":
+ 68361109, "region": "ap-west", "vpc_nat_1_1": null, "reserved": false}], "private":
+ [], "shared": [], "reserved": [], "vpc": []}, "ipv6": {"slaac": {"address":
+ "1234::5678", "gateway": "1234::5678", "subnet_mask": "1234::5678",
+ "prefix": 64, "type": "ipv6", "rdns": null, "linode_id": 68361109, "region":
+ "ap-west", "public": true}, "link_local": {"address": "1234::5678",
"gateway": "1234::5678", "subnet_mask": "1234::5678", "prefix": 64,
- "type": "ipv6", "rdns": null, "linode_id": 61169670, "region": "ap-west", "public":
- true}, "link_local": {"address": "1234::5678", "gateway": "1234::5678",
- "subnet_mask": "1234::5678", "prefix": 64, "type": "ipv6", "rdns":
- null, "linode_id": 61169670, "region": "ap-west", "public": false}, "global":
- []}}'
+ "type": "ipv6", "rdns": null, "linode_id": 68361109, "region": "ap-west", "public":
+ false}, "global": []}}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -548,6 +536,8 @@ interactions:
- '*'
Access-Control-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 +547,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:53 GMT
+ - Wed, 11 Dec 2024 19:17:50 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -576,7 +566,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -592,7 +582,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169670/ips/172.105.55.46
+ url: https://api.linode.com/v4beta/linode/instances/68361109/ips/194.195.115.18
method: DELETE
response:
body: '{}'
@@ -607,6 +597,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -618,7 +610,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:53 GMT
+ - Wed, 11 Dec 2024 19:17:50 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -635,7 +627,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -651,19 +643,19 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169670/ips
+ url: https://api.linode.com/v4beta/linode/instances/68361109/ips
method: GET
response:
- body: '{"ipv4": {"public": [{"address": "172.105.55.118", "gateway": "172.105.55.1",
+ body: '{"ipv4": {"public": [{"address": "194.195.115.17", "gateway": "194.195.115.1",
"subnet_mask": "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true,
- "rdns": "172-105-55-118.ip.linodeusercontent.com", "linode_id": 61169670, "region":
- "ap-west", "vpc_nat_1_1": null}], "private": [], "shared": [], "reserved": [],
- "vpc": []}, "ipv6": {"slaac": {"address": "1234::5678",
+ "rdns": "194-195-115-17.ip.linodeusercontent.com", "linode_id": 68361109, "region":
+ "ap-west", "vpc_nat_1_1": null, "reserved": false}], "private": [], "shared":
+ [], "reserved": [], "vpc": []}, "ipv6": {"slaac": {"address": "1234::5678",
"gateway": "1234::5678", "subnet_mask": "1234::5678", "prefix": 64,
- "type": "ipv6", "rdns": null, "linode_id": 61169670, "region": "ap-west", "public":
+ "type": "ipv6", "rdns": null, "linode_id": 68361109, "region": "ap-west", "public":
true}, "link_local": {"address": "1234::5678", "gateway": "1234::5678",
"subnet_mask": "1234::5678", "prefix": 64, "type": "ipv6", "rdns":
- null, "linode_id": 61169670, "region": "ap-west", "public": false}, "global":
+ null, "linode_id": 68361109, "region": "ap-west", "public": false}, "global":
[]}}'
headers:
Access-Control-Allow-Credentials:
@@ -676,18 +668,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "799"
+ - "819"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:53 GMT
+ - Wed, 11 Dec 2024 19:17:50 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -705,7 +699,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -721,7 +715,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169670
+ url: https://api.linode.com/v4beta/linode/instances/68361109
method: DELETE
response:
body: '{}'
@@ -736,6 +730,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -747,7 +743,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:53 GMT
+ - Wed, 11 Dec 2024 19:17:52 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -764,7 +760,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
diff --git a/test/integration/fixtures/TestIPAddress_Instance_ReserveIP_Assign.yaml b/test/integration/fixtures/TestIPAddress_Instance_ReserveIP_Assign.yaml
new file mode 100644
index 000000000..c5c9f4609
--- /dev/null
+++ b/test/integration/fixtures/TestIPAddress_Instance_ReserveIP_Assign.yaml
@@ -0,0 +1,1334 @@
+---
+version: 1
+interactions:
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/regions?page=1
+ method: GET
+ response:
+ body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.34.5,172.105.35.5,172.105.36.5,172.105.37.5,172.105.38.5,172.105.39.5,172.105.40.5,172.105.41.5,172.105.42.5,172.105.43.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.0.5,172.105.3.5,172.105.4.5,172.105.5.5,172.105.6.5,172.105.7.5,172.105.8.5,172.105.9.5,172.105.10.5,172.105.11.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.166.5,172.105.169.5,172.105.168.5,172.105.172.5,172.105.162.5,172.105.170.5,172.105.167.5,172.105.171.5,172.105.181.5,172.105.161.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-iad", "label": "Washington, DC", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "139.144.192.62,139.144.192.60,139.144.192.61,139.144.192.53,139.144.192.54,139.144.192.67,139.144.192.69,139.144.192.66,139.144.192.52,139.144.192.68",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17,172.232.0.16,172.232.0.21,172.232.0.13,172.232.0.22,172.232.0.9,172.232.0.19,172.232.0.20,172.232.0.15,172.232.0.18",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "fr-par", "label": "Paris, FR", "country":
+ "fr", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.32.21,172.232.32.23,172.232.32.17,172.232.32.18,172.232.32.16,172.232.32.22,172.232.32.20,172.232.32.14,172.232.32.11,172.232.32.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-sea", "label": "Seattle, WA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,172.232.160.21,172.232.160.17,172.232.160.15,172.232.160.18,172.232.160.8,172.232.160.12,172.232.160.11,172.232.160.14,172.232.160.16",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,172.233.0.9,172.233.0.7,172.233.0.12,172.233.0.5,172.233.0.13,172.233.0.10,172.233.0.6,172.233.0.8,172.233.0.11",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
+ "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.33.36,172.233.33.38,172.233.33.35,172.233.33.39,172.233.33.34,172.233.33.33,172.233.33.31,172.233.33.30,172.233.33.37,172.233.33.32",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.232.128.24,172.232.128.26,172.232.128.20,172.232.128.22,172.232.128.25,172.232.128.19,172.232.128.23,172.232.128.18,172.232.128.21,172.232.128.27",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,172.233.111.17,172.233.111.21,172.233.111.25,172.233.111.19,172.233.111.12,172.233.111.26,172.233.111.16,172.233.111.18,172.233.111.9",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.232.96.17,172.232.96.26,172.232.96.19,172.232.96.20,172.232.96.25,172.232.96.21,172.232.96.18,172.232.96.22,172.232.96.23,172.232.96.24",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.64.44,172.233.64.43,172.233.64.37,172.233.64.40,172.233.64.46,172.233.64.41,172.233.64.39,172.233.64.42,172.233.64.45,172.233.64.38",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "it-mil", "label": "Milan, IT", "country":
+ "it", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.192.19,172.232.192.18,172.232.192.16,172.232.192.20,172.232.192.24,172.232.192.21,172.232.192.22,172.232.192.17,172.232.192.15,172.232.192.23",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-mia", "label": "Miami, FL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.233.160.34,172.233.160.27,172.233.160.30,172.233.160.29,172.233.160.32,172.233.160.28,172.233.160.33,172.233.160.26,172.233.160.25,172.233.160.31",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "id-cgk", "label": "Jakarta, ID", "country":
+ "id", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.224.23,172.232.224.32,172.232.224.26,172.232.224.27,172.232.224.21,172.232.224.24,172.232.224.22,172.232.224.20,172.232.224.31,172.232.224.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-lax", "label": "Los Angeles, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.128.45,172.233.128.38,172.233.128.53,172.233.128.37,172.233.128.34,172.233.128.36,172.233.128.33,172.233.128.39,172.233.128.43,172.233.128.44",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "gb-lon", "label": "London 2, UK", "country":
+ "gb", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country":
+ "au", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-bom-2", "label": "Mumbai 2, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "de-fra-2", "label": "Frankfurt 2, DE", "country":
+ "de", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.203.9,172.236.203.16,172.236.203.19,172.236.203.15,172.236.203.17,172.236.203.11,172.236.203.18,172.236.203.14,172.236.203.13,172.236.203.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "sg-sin-2", "label": "Singapore 2, SG", "country":
+ "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-tyo-3", "label": "Tokyo 3, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "172.237.4.15,172.237.4.19,172.237.4.17,172.237.4.21,172.237.4.16,172.237.4.18,172.237.4.23,172.237.4.24,172.237.4.20,172.237.4.14",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-central", "label": "Dallas, TX", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5,72.14.188.5,173.255.199.5,66.228.53.5,96.126.122.5,96.126.124.5,96.126.127.5,198.58.107.5,198.58.111.5,23.239.24.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-west", "label": "Fremont, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5,
+ 173.230.147.5, 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5,
+ 173.255.244.5, 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast",
+ "label": "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5,
+ 96.126.106.5, 50.116.53.5, 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5,
+ 97.107.133.4, 207.192.69.4, 207.192.69.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west",
+ "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5,
+ 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20,
+ 109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country":
+ "sg", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,139.162.131.5,139.162.132.5,139.162.133.5,139.162.134.5,139.162.135.5,139.162.136.5,139.162.137.5,139.162.138.5,139.162.139.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-northeast", "label": "Tokyo 2, JP", "country":
+ "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}], "page": 1, "pages": 1, "results": 31}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:13 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ - Accept-Encoding
+ X-Accepted-Oauth-Scopes:
+ - '*'
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-x0br22kd464d","root_pass":"]60f8-j2V6kvF''6SIywqK53AEB=+y\u003e6[d\u0026[U^J2z3V71!J6t@{Dg]L;Ln6f@Iww3","image":"linode/debian12","firewall_id":1339169,"booted":false}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances
+ method: POST
+ response:
+ body: '{"id": 68361128, "label": "go-test-ins-x0br22kd464d", "group": "", "status":
+ "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "type": "g6-nanode-1", "ipv4": ["194.195.115.83"], "ipv6": "1234::5678/128",
+ "image": "linode/debian12", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm",
+ "watchdog_enabled": true, "tags": [], "host_uuid": "ce087cf1dcc79780806668c1039289d8937ad6c6",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": []}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:14 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Accept-Encoding
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "8"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-ymgs78b74j98","root_pass":"pIhB3q8i[{4!JC]f9GnS8O`\u0026E+''55zrLd5HE$HAfb{2Y3@at:W607i1=,k}?B01y","image":"linode/debian12","firewall_id":1339169,"booted":false}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances
+ method: POST
+ response:
+ body: '{"id": 68361129, "label": "go-test-ins-ymgs78b74j98", "group": "", "status":
+ "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "type": "g6-nanode-1", "ipv4": ["194.195.115.95"], "ipv6": "1234::5678/128",
+ "image": "linode/debian12", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm",
+ "watchdog_enabled": true, "tags": [], "host_uuid": "22efe493338d3f0f7184a2cd6393c9cfa63ef022",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": []}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:16 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Accept-Encoding
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "8"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"ap-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/networking/reserved/ips
+ method: POST
+ response:
+ body: '{"address": "172.105.49.153", "gateway": "172.105.49.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "172-105-49-153.ip.linodeusercontent.com",
+ "linode_id": null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "264"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:16 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"ap-west","assignments":[{"address":"172.105.49.153","linode_id":68361128}]}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips/assign
+ method: POST
+ response:
+ body: '{}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "2"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:16 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips/172.105.49.153
+ method: GET
+ response:
+ body: '{"address": "172.105.49.153", "gateway": "172.105.49.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "172-105-49-153.ip.linodeusercontent.com",
+ "linode_id": 68361128, "region": "ap-west", "vpc_nat_1_1": null, "reserved":
+ true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "268"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:16 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"ap-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/networking/reserved/ips
+ method: POST
+ response:
+ body: '{"address": "172.105.59.228", "gateway": "172.105.59.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "172-105-59-228.ip.linodeusercontent.com",
+ "linode_id": null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "264"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:16 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"ap-west","assignments":[{"address":"172.105.59.228","linode_id":68361128}]}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips/assign
+ method: POST
+ response:
+ body: '{}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "2"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:17 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"ap-west","assignments":[{"address":"172.105.59.228","linode_id":68361129}]}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips/assign
+ method: POST
+ response:
+ body: '{}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "2"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:17 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips/172.105.59.228
+ method: GET
+ response:
+ body: '{"address": "172.105.59.228", "gateway": "172.105.59.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "172-105-59-228.ip.linodeusercontent.com",
+ "linode_id": 68361129, "region": "ap-west", "vpc_nat_1_1": null, "reserved":
+ true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "268"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:17 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/reserved/ips/172.105.59.228
+ 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:
+ - Wed, 11 Dec 2024 19:18:17 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "10"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"ap-west","assignments":[{"address":"192.0.2.1","linode_id":68361128}]}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips/assign
+ method: POST
+ response:
+ body: '{"errors": [{"reason": "IP Address 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
+ Content-Length:
+ - "49"
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:17 GMT
+ Pragma:
+ - no-cache
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Frame-Options:
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ status: 400 Bad Request
+ code: 400
+ duration: ""
+- request:
+ body: '{"region":"ap-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/networking/reserved/ips
+ method: POST
+ response:
+ body: '{"address": "172.105.59.176", "gateway": "172.105.59.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "172-105-59-176.ip.linodeusercontent.com",
+ "linode_id": null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "264"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:18 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"ap-west","assignments":[{"address":"172.105.59.176","linode_id":99999}]}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips/assign
+ method: POST
+ response:
+ body: '{"errors": [{"reason": "Invalid Linode ID 99999"}]}'
+ 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
+ Content-Length:
+ - "51"
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:18:18 GMT
+ Pragma:
+ - no-cache
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Frame-Options:
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ status: 400 Bad Request
+ code: 400
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/reserved/ips/172.105.59.176
+ 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:
+ - Wed, 11 Dec 2024 19:18:18 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "10"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/reserved/ips/172.105.49.153
+ 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:
+ - Wed, 11 Dec 2024 19:18:18 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "10"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ 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/68361129
+ 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:
+ - Wed, 11 Dec 2024 19:18:20 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances/68361128
+ 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:
+ - Wed, 11 Dec 2024 19:18:22 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
diff --git a/test/integration/fixtures/TestIPAddress_Instance_Share.yaml b/test/integration/fixtures/TestIPAddress_Instance_Share.yaml
index a91f3d830..788338a9c 100644
--- a/test/integration/fixtures/TestIPAddress_Instance_Share.yaml
+++ b/test/integration/fixtures/TestIPAddress_Instance_Share.yaml
@@ -15,262 +15,241 @@ interactions:
method: GET
response:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.34.5,172.105.35.5,172.105.36.5,172.105.37.5,172.105.38.5,172.105.39.5,172.105.40.5,172.105.41.5,172.105.42.5,172.105.43.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.0.5,172.105.3.5,172.105.4.5,172.105.5.5,172.105.6.5,172.105.7.5,172.105.8.5,172.105.9.5,172.105.10.5,172.105.11.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.166.5,172.105.169.5,172.105.168.5,172.105.172.5,172.105.162.5,172.105.170.5,172.105.167.5,172.105.171.5,172.105.181.5,172.105.161.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-iad", "label": "Washington, DC", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
"Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "139.144.192.62,139.144.192.60,139.144.192.61,139.144.192.53,139.144.192.54,139.144.192.67,139.144.192.69,139.144.192.66,139.144.192.52,139.144.192.68",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
- "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status":
- "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13,
- 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
- "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17,172.232.0.16,172.232.0.21,172.232.0.13,172.232.0.22,172.232.0.9,172.232.0.19,172.232.0.20,172.232.0.15,172.232.0.18",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "fr-par", "label": "Paris, FR", "country":
+ "fr", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.32.21,172.232.32.23,172.232.32.17,172.232.32.18,172.232.32.16,172.232.32.22,172.232.32.20,172.232.32.14,172.232.32.11,172.232.32.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-sea", "label": "Seattle, WA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,172.232.160.21,172.232.160.17,172.232.160.15,172.232.160.18,172.232.160.8,172.232.160.12,172.232.160.11,172.232.160.14,172.232.160.16",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,172.233.0.9,172.233.0.7,172.233.0.12,172.233.0.5,172.233.0.13,172.233.0.10,172.233.0.6,172.233.0.8,172.233.0.11",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
- "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22,
- 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21,
- 172.232.128.27", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25,
- 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18,
- 172.233.111.9", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20,
- 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
- 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
- "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
- 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
- "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32,
- 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
- "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
- 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
- "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
- 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
- "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5,
- 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6":
- "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5,
- 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5,
- 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5,
- 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678,
+ "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.33.36,172.233.33.38,172.233.33.35,172.233.33.39,172.233.33.34,172.233.33.33,172.233.33.31,172.233.33.30,172.233.33.37,172.233.33.32",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.232.128.24,172.232.128.26,172.232.128.20,172.232.128.22,172.232.128.25,172.232.128.19,172.232.128.23,172.232.128.18,172.232.128.21,172.232.128.27",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,172.233.111.17,172.233.111.21,172.233.111.25,172.233.111.19,172.233.111.12,172.233.111.26,172.233.111.16,172.233.111.18,172.233.111.9",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.232.96.17,172.232.96.26,172.232.96.19,172.232.96.20,172.232.96.25,172.232.96.21,172.232.96.18,172.232.96.22,172.232.96.23,172.232.96.24",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.64.44,172.233.64.43,172.233.64.37,172.233.64.40,172.233.64.46,172.233.64.41,172.233.64.39,172.233.64.42,172.233.64.45,172.233.64.38",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "it-mil", "label": "Milan, IT", "country":
+ "it", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.192.19,172.232.192.18,172.232.192.16,172.232.192.20,172.232.192.24,172.232.192.21,172.232.192.22,172.232.192.17,172.232.192.15,172.232.192.23",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-mia", "label": "Miami, FL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.233.160.34,172.233.160.27,172.233.160.30,172.233.160.29,172.233.160.32,172.233.160.28,172.233.160.33,172.233.160.26,172.233.160.25,172.233.160.31",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "id-cgk", "label": "Jakarta, ID", "country":
+ "id", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.224.23,172.232.224.32,172.232.224.26,172.232.224.27,172.232.224.21,172.232.224.24,172.232.224.22,172.232.224.20,172.232.224.31,172.232.224.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-lax", "label": "Los Angeles, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.128.45,172.233.128.38,172.233.128.53,172.233.128.37,172.233.128.34,172.233.128.36,172.233.128.33,172.233.128.39,172.233.128.43,172.233.128.44",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "gb-lon", "label": "London 2, UK", "country":
+ "gb", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country":
+ "au", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-bom-2", "label": "Mumbai 2, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "de-fra-2", "label": "Frankfurt 2, DE", "country":
+ "de", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.203.9,172.236.203.16,172.236.203.19,172.236.203.15,172.236.203.17,172.236.203.11,172.236.203.18,172.236.203.14,172.236.203.13,172.236.203.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "sg-sin-2", "label": "Singapore 2, SG", "country":
+ "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-tyo-3", "label": "Tokyo 3, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "172.237.4.15,172.237.4.19,172.237.4.17,172.237.4.21,172.237.4.16,172.237.4.18,172.237.4.23,172.237.4.24,172.237.4.20,172.237.4.14",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-central", "label": "Dallas, TX", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5,72.14.188.5,173.255.199.5,66.228.53.5,96.126.122.5,96.126.124.5,96.126.127.5,198.58.107.5,198.58.111.5,23.239.24.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-west", "label": "Fremont, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5,
+ 173.230.147.5, 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5,
+ 173.255.244.5, 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
- "Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast",
+ "label": "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "status":
- "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5, 50.116.58.5,
- 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4, 207.192.69.5",
- "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "eu-west", "label": "London, UK", "country": "gb", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5,
+ 96.126.106.5, 50.116.53.5, 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5,
+ 97.107.133.4, 207.192.69.4, 207.192.69.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west",
+ "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
"status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5,
176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20,
109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country":
- "sg", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "139.162.11.5, 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5,
- 139.162.21.5, 139.162.27.5, 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6":
- "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
- Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
- "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
- 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
- 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
- "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5,
- 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6":
- "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}], "page": 1, "pages": 1, "results": 27}'
+ "sg", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,139.162.131.5,139.162.132.5,139.162.133.5,139.162.134.5,139.162.135.5,139.162.136.5,139.162.137.5,139.162.138.5,139.162.139.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-northeast", "label": "Tokyo 2, JP", "country":
+ "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}], "page": 1, "pages": 1, "results": 31}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -282,6 +261,8 @@ interactions:
- '*'
Access-Control-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 +272,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:32:05 GMT
+ - Wed, 11 Dec 2024 19:17:59 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -310,14 +291,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-g7y142iokx36","firewall_id":640265,"booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-nfrk3162zg00","firewall_id":1339169,"booted":false}'
form: {}
headers:
Accept:
@@ -329,16 +310,17 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 61169674, "label": "go-test-ins-wo-disk-g7y142iokx36", "group":
+ body: '{"id": 68361118, "label": "go-test-ins-wo-disk-nfrk3162zg00", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.55.223"], "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":
- "aeb2357ce09e1cb483d94ee0d025f3b254c93dfc", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["194.195.115.39"], "ipv6": "1234::5678/128",
+ "image": null, "region": "ap-west", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm",
+ "watchdog_enabled": true, "tags": [], "host_uuid": "58b502ff98a4081434a97fe5a4f00bb7835d155c",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": []}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -350,24 +332,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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, 08 Jul 2024 13:32:05 GMT
+ - Wed, 11 Dec 2024 19:18:00 GMT
Pragma:
- no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- Authorization, X-Filter
+ - Accept-Encoding
X-Accepted-Oauth-Scopes:
- linodes:read_write
X-Content-Type-Options:
@@ -378,14 +361,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "10"
+ - "8"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-8a29mmr62y5r","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-q74140l6tive","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -394,10 +377,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169674/configs
+ url: https://api.linode.com/v4beta/linode/instances/68361118/configs
method: POST
response:
- body: '{"id": 64385536, "label": "go-test-conf-8a29mmr62y5r", "helpers": {"updatedb_disabled":
+ body: '{"id": 71709962, "label": "go-test-conf-q74140l6tive", "helpers": {"updatedb_disabled":
true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
@@ -415,6 +398,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -426,7 +411,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:32:06 GMT
+ - Wed, 11 Dec 2024 19:18:00 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -443,14 +428,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-ins-test-share","root_pass":"4h@G\u0026##)$#56/u8peR@4P7M-PcM7LAHJ*^5lS!\u003eO3o6J1!9q2~6WaidxtFKihe40","image":"linode/debian9","firewall_id":640265,"booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-ins-test-share","root_pass":":jA4B-9986E1b`07L=OQsHJ8?02K)69igK|S\\-0Dbd/2\u003eavNDji}~gan6vZ?g;G)","image":"linode/debian12","firewall_id":1339169,"booted":false}'
form: {}
headers:
Accept:
@@ -462,142 +447,17 @@ interactions:
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:
- - '*'
- Cache-Control:
- - max-age=0, no-cache, no-store
- Content-Length:
- - "45"
- Content-Type:
- - application/json
- Expires:
- - Mon, 08 Jul 2024 13:32:06 GMT
- Pragma:
- - no-cache
- X-Accepted-Oauth-Scopes:
- - linodes:read_write
- X-Frame-Options:
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "10"
- status: 429 Too Many Requests
- code: 429
- duration: ""
-- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-ins-test-share","root_pass":"4h@G\u0026##)$#56/u8peR@4P7M-PcM7LAHJ*^5lS!\u003eO3o6J1!9q2~6WaidxtFKihe40","image":"linode/debian9","firewall_id":640265,"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:
- - '*'
- Cache-Control:
- - max-age=0, no-cache, no-store
- Content-Length:
- - "45"
- Content-Type:
- - application/json
- Expires:
- - Mon, 08 Jul 2024 13:32:09 GMT
- Pragma:
- - no-cache
- X-Accepted-Oauth-Scopes:
- - linodes:read_write
- X-Frame-Options:
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "10"
- status: 429 Too Many Requests
- code: 429
- duration: ""
-- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-ins-test-share","root_pass":"4h@G\u0026##)$#56/u8peR@4P7M-PcM7LAHJ*^5lS!\u003eO3o6J1!9q2~6WaidxtFKihe40","image":"linode/debian9","firewall_id":640265,"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:
- - '*'
- Cache-Control:
- - max-age=0, no-cache, no-store
- Content-Length:
- - "45"
- Content-Type:
- - application/json
- Expires:
- - Mon, 08 Jul 2024 13:32:13 GMT
- Pragma:
- - no-cache
- X-Accepted-Oauth-Scopes:
- - linodes:read_write
- X-Frame-Options:
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "10"
- status: 429 Too Many Requests
- code: 429
- duration: ""
-- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-ins-test-share","root_pass":"4h@G\u0026##)$#56/u8peR@4P7M-PcM7LAHJ*^5lS!\u003eO3o6J1!9q2~6WaidxtFKihe40","image":"linode/debian9","firewall_id":640265,"booted":false}'
- form: {}
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances
- method: POST
- response:
- body: '{"id": 61169687, "label": "go-ins-test-share", "group": "", "status": "provisioning",
+ body: '{"id": 68361119, "label": "go-ins-test-share", "group": "", "status": "provisioning",
"created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "type":
- "g6-nanode-1", "ipv4": ["172.105.55.24"], "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":
- "8bb24924c0b481c3ae3a41bf5819194b366c512d", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "g6-nanode-1", "ipv4": ["194.195.115.59"], "ipv6": "1234::5678/128",
+ "image": "linode/debian12", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm",
+ "watchdog_enabled": true, "tags": [], "host_uuid": "58aedbba0dcf59523f1880abcc80ec241436277e",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": []}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -609,24 +469,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
- Content-Length:
- - "782"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:32:23 GMT
+ - Wed, 11 Dec 2024 19:18:02 GMT
Pragma:
- no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- Authorization, X-Filter
+ - Accept-Encoding
X-Accepted-Oauth-Scopes:
- linodes:read_write
X-Content-Type-Options:
@@ -637,7 +498,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "10"
+ - "8"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -653,12 +514,13 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169687/ips
+ url: https://api.linode.com/v4beta/linode/instances/68361119/ips
method: POST
response:
- body: '{"address": "172.105.55.147", "gateway": "172.105.55.1", "subnet_mask":
- "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "172-105-55-147.ip.linodeusercontent.com",
- "linode_id": 61169687, "region": "ap-west", "vpc_nat_1_1": null}'
+ body: '{"address": "194.195.115.63", "gateway": "194.195.115.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "194-195-115-63.ip.linodeusercontent.com",
+ "linode_id": 68361119, "region": "ap-west", "vpc_nat_1_1": null, "reserved":
+ false}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -670,18 +532,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "250"
+ - "270"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:32:23 GMT
+ - Wed, 11 Dec 2024 19:18:02 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -698,14 +562,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"ips":["172.105.55.147"],"linode_id":61169674}'
+ body: '{"ips":["194.195.115.63"],"linode_id":68361118}'
form: {}
headers:
Accept:
@@ -729,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:
@@ -740,7 +606,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:32:24 GMT
+ - Wed, 11 Dec 2024 19:18:02 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -757,7 +623,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -773,22 +639,23 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169674/ips
+ url: https://api.linode.com/v4beta/linode/instances/68361118/ips
method: GET
response:
- body: '{"ipv4": {"public": [{"address": "172.105.55.223", "gateway": "172.105.55.1",
+ body: '{"ipv4": {"public": [{"address": "194.195.115.39", "gateway": "194.195.115.1",
"subnet_mask": "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true,
- "rdns": "172-105-55-223.ip.linodeusercontent.com", "linode_id": 61169674, "region":
- "ap-west", "vpc_nat_1_1": null}], "private": [], "shared": [{"address": "172.105.55.147",
- "gateway": "172.105.55.1", "subnet_mask": "255.255.255.0", "prefix": 24, "type":
- "ipv4", "public": true, "rdns": "172-105-55-147.ip.linodeusercontent.com", "linode_id":
- 61169687, "region": "ap-west", "vpc_nat_1_1": null}], "reserved": [], "vpc":
- []}, "ipv6": {"slaac": {"address": "1234::5678", "gateway":
- "1234::5678", "subnet_mask": "1234::5678", "prefix": 64, "type": "ipv6",
- "rdns": null, "linode_id": 61169674, "region": "ap-west", "public": true}, "link_local":
- {"address": "1234::5678", "gateway": "1234::5678", "subnet_mask":
- "1234::5678", "prefix": 64, "type": "ipv6", "rdns": null, "linode_id":
- 61169674, "region": "ap-west", "public": false}, "global": []}}'
+ "rdns": "194-195-115-39.ip.linodeusercontent.com", "linode_id": 68361118, "region":
+ "ap-west", "vpc_nat_1_1": null, "reserved": false}], "private": [], "shared":
+ [{"address": "194.195.115.63", "gateway": "194.195.115.1", "subnet_mask": "255.255.255.0",
+ "prefix": 24, "type": "ipv4", "public": true, "rdns": "194-195-115-63.ip.linodeusercontent.com",
+ "linode_id": 68361119, "region": "ap-west", "vpc_nat_1_1": null, "reserved":
+ false}], "reserved": [], "vpc": []}, "ipv6": {"slaac": {"address": "1234::5678",
+ "gateway": "1234::5678", "subnet_mask": "1234::5678", "prefix": 64,
+ "type": "ipv6", "rdns": null, "linode_id": 68361118, "region": "ap-west", "public":
+ true}, "link_local": {"address": "1234::5678", "gateway": "1234::5678",
+ "subnet_mask": "1234::5678", "prefix": 64, "type": "ipv6", "rdns":
+ null, "linode_id": 68361118, "region": "ap-west", "public": false}, "global":
+ []}}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -800,6 +667,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -809,7 +678,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:32:24 GMT
+ - Wed, 11 Dec 2024 19:18:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -828,7 +697,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -844,7 +713,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169687
+ url: https://api.linode.com/v4beta/linode/instances/68361119
method: DELETE
response:
body: '{}'
@@ -859,6 +728,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -870,7 +741,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:32:24 GMT
+ - Wed, 11 Dec 2024 19:18:05 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -887,7 +758,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -903,7 +774,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169674
+ url: https://api.linode.com/v4beta/linode/instances/68361118
method: DELETE
response:
body: '{}'
@@ -918,6 +789,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -929,7 +802,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:32:24 GMT
+ - Wed, 11 Dec 2024 19:18:07 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -946,7 +819,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
diff --git a/test/integration/fixtures/TestIPAddress_Update.yaml b/test/integration/fixtures/TestIPAddress_Update.yaml
index 1843cad2e..13b0297fd 100644
--- a/test/integration/fixtures/TestIPAddress_Update.yaml
+++ b/test/integration/fixtures/TestIPAddress_Update.yaml
@@ -15,262 +15,241 @@ interactions:
method: GET
response:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.34.5,172.105.35.5,172.105.36.5,172.105.37.5,172.105.38.5,172.105.39.5,172.105.40.5,172.105.41.5,172.105.42.5,172.105.43.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.0.5,172.105.3.5,172.105.4.5,172.105.5.5,172.105.6.5,172.105.7.5,172.105.8.5,172.105.9.5,172.105.10.5,172.105.11.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.166.5,172.105.169.5,172.105.168.5,172.105.172.5,172.105.162.5,172.105.170.5,172.105.167.5,172.105.171.5,172.105.181.5,172.105.161.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-iad", "label": "Washington, DC", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
"Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "139.144.192.62,139.144.192.60,139.144.192.61,139.144.192.53,139.144.192.54,139.144.192.67,139.144.192.69,139.144.192.66,139.144.192.52,139.144.192.68",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
- "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status":
- "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13,
- 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
- "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17,172.232.0.16,172.232.0.21,172.232.0.13,172.232.0.22,172.232.0.9,172.232.0.19,172.232.0.20,172.232.0.15,172.232.0.18",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "fr-par", "label": "Paris, FR", "country":
+ "fr", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.32.21,172.232.32.23,172.232.32.17,172.232.32.18,172.232.32.16,172.232.32.22,172.232.32.20,172.232.32.14,172.232.32.11,172.232.32.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-sea", "label": "Seattle, WA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,172.232.160.21,172.232.160.17,172.232.160.15,172.232.160.18,172.232.160.8,172.232.160.12,172.232.160.11,172.232.160.14,172.232.160.16",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,172.233.0.9,172.233.0.7,172.233.0.12,172.233.0.5,172.233.0.13,172.233.0.10,172.233.0.6,172.233.0.8,172.233.0.11",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
- "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22,
- 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21,
- 172.232.128.27", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25,
- 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18,
- 172.233.111.9", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20,
- 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
- 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
- "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
- 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
- "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32,
- 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
- "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
- 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
- "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
- 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
- "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5,
- 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6":
- "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5,
- 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5,
- 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5,
- 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678,
+ "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.33.36,172.233.33.38,172.233.33.35,172.233.33.39,172.233.33.34,172.233.33.33,172.233.33.31,172.233.33.30,172.233.33.37,172.233.33.32",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.232.128.24,172.232.128.26,172.232.128.20,172.232.128.22,172.232.128.25,172.232.128.19,172.232.128.23,172.232.128.18,172.232.128.21,172.232.128.27",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,172.233.111.17,172.233.111.21,172.233.111.25,172.233.111.19,172.233.111.12,172.233.111.26,172.233.111.16,172.233.111.18,172.233.111.9",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.232.96.17,172.232.96.26,172.232.96.19,172.232.96.20,172.232.96.25,172.232.96.21,172.232.96.18,172.232.96.22,172.232.96.23,172.232.96.24",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.64.44,172.233.64.43,172.233.64.37,172.233.64.40,172.233.64.46,172.233.64.41,172.233.64.39,172.233.64.42,172.233.64.45,172.233.64.38",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "it-mil", "label": "Milan, IT", "country":
+ "it", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.192.19,172.232.192.18,172.232.192.16,172.232.192.20,172.232.192.24,172.232.192.21,172.232.192.22,172.232.192.17,172.232.192.15,172.232.192.23",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-mia", "label": "Miami, FL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.233.160.34,172.233.160.27,172.233.160.30,172.233.160.29,172.233.160.32,172.233.160.28,172.233.160.33,172.233.160.26,172.233.160.25,172.233.160.31",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "id-cgk", "label": "Jakarta, ID", "country":
+ "id", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.224.23,172.232.224.32,172.232.224.26,172.232.224.27,172.232.224.21,172.232.224.24,172.232.224.22,172.232.224.20,172.232.224.31,172.232.224.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-lax", "label": "Los Angeles, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.128.45,172.233.128.38,172.233.128.53,172.233.128.37,172.233.128.34,172.233.128.36,172.233.128.33,172.233.128.39,172.233.128.43,172.233.128.44",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "gb-lon", "label": "London 2, UK", "country":
+ "gb", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country":
+ "au", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-bom-2", "label": "Mumbai 2, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "de-fra-2", "label": "Frankfurt 2, DE", "country":
+ "de", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.203.9,172.236.203.16,172.236.203.19,172.236.203.15,172.236.203.17,172.236.203.11,172.236.203.18,172.236.203.14,172.236.203.13,172.236.203.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "sg-sin-2", "label": "Singapore 2, SG", "country":
+ "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-tyo-3", "label": "Tokyo 3, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "172.237.4.15,172.237.4.19,172.237.4.17,172.237.4.21,172.237.4.16,172.237.4.18,172.237.4.23,172.237.4.24,172.237.4.20,172.237.4.14",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-central", "label": "Dallas, TX", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5,72.14.188.5,173.255.199.5,66.228.53.5,96.126.122.5,96.126.124.5,96.126.127.5,198.58.107.5,198.58.111.5,23.239.24.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-west", "label": "Fremont, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5,
+ 173.230.147.5, 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5,
+ 173.255.244.5, 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
- "Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast",
+ "label": "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "status":
- "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5, 50.116.58.5,
- 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4, 207.192.69.5",
- "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "eu-west", "label": "London, UK", "country": "gb", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5,
+ 96.126.106.5, 50.116.53.5, 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5,
+ 97.107.133.4, 207.192.69.4, 207.192.69.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west",
+ "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
"status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5,
176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20,
109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country":
- "sg", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "139.162.11.5, 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5,
- 139.162.21.5, 139.162.27.5, 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6":
- "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
- Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
- "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
- 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
- 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
- "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5,
- 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6":
- "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}], "page": 1, "pages": 1, "results": 27}'
+ "sg", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,139.162.131.5,139.162.132.5,139.162.133.5,139.162.134.5,139.162.135.5,139.162.136.5,139.162.137.5,139.162.138.5,139.162.139.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-northeast", "label": "Tokyo 2, JP", "country":
+ "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}], "page": 1, "pages": 1, "results": 31}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -282,6 +261,8 @@ interactions:
- '*'
Access-Control-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 +272,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:50 GMT
+ - Wed, 11 Dec 2024 19:17:40 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -310,14 +291,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-9ry433z3jee3","firewall_id":640265,"booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-o44ma12nq8t2","firewall_id":1339169,"booted":false}'
form: {}
headers:
Accept:
@@ -329,16 +310,17 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 61169669, "label": "go-test-ins-wo-disk-9ry433z3jee3", "group":
+ body: '{"id": 68361103, "label": "go-test-ins-wo-disk-o44ma12nq8t2", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.55.85"], "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":
- "aeb2357ce09e1cb483d94ee0d025f3b254c93dfc", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["194.195.115.15"], "ipv6": "1234::5678/128",
+ "image": null, "region": "ap-west", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm",
+ "watchdog_enabled": true, "tags": [], "host_uuid": "58b502ff98a4081434a97fe5a4f00bb7835d155c",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": []}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -350,24 +332,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:50 GMT
+ - Wed, 11 Dec 2024 19:17:40 GMT
Pragma:
- no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- Authorization, X-Filter
+ - Accept-Encoding
X-Accepted-Oauth-Scopes:
- linodes:read_write
X-Content-Type-Options:
@@ -378,14 +361,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "10"
+ - "8"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-0q81y862eien","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-083n4v9u8boo","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -394,10 +377,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169669/configs
+ url: https://api.linode.com/v4beta/linode/instances/68361103/configs
method: POST
response:
- body: '{"id": 64385522, "label": "go-test-conf-0q81y862eien", "helpers": {"updatedb_disabled":
+ body: '{"id": 71709950, "label": "go-test-conf-083n4v9u8boo", "helpers": {"updatedb_disabled":
true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
@@ -415,6 +398,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -426,7 +411,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:51 GMT
+ - Wed, 11 Dec 2024 19:17:40 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -443,7 +428,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -459,19 +444,19 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169669/ips
+ url: https://api.linode.com/v4beta/linode/instances/68361103/ips
method: GET
response:
- body: '{"ipv4": {"public": [{"address": "172.105.55.85", "gateway": "172.105.55.1",
+ body: '{"ipv4": {"public": [{"address": "194.195.115.15", "gateway": "194.195.115.1",
"subnet_mask": "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true,
- "rdns": "172-105-55-85.ip.linodeusercontent.com", "linode_id": 61169669, "region":
- "ap-west", "vpc_nat_1_1": null}], "private": [], "shared": [], "reserved": [],
- "vpc": []}, "ipv6": {"slaac": {"address": "1234::5678",
+ "rdns": "194-195-115-15.ip.linodeusercontent.com", "linode_id": 68361103, "region":
+ "ap-west", "vpc_nat_1_1": null, "reserved": false}], "private": [], "shared":
+ [], "reserved": [], "vpc": []}, "ipv6": {"slaac": {"address": "1234::5678",
"gateway": "1234::5678", "subnet_mask": "1234::5678", "prefix": 64,
- "type": "ipv6", "rdns": null, "linode_id": 61169669, "region": "ap-west", "public":
+ "type": "ipv6", "rdns": null, "linode_id": 68361103, "region": "ap-west", "public":
true}, "link_local": {"address": "1234::5678", "gateway": "1234::5678",
"subnet_mask": "1234::5678", "prefix": 64, "type": "ipv6", "rdns":
- null, "linode_id": 61169669, "region": "ap-west", "public": false}, "global":
+ null, "linode_id": 68361103, "region": "ap-west", "public": false}, "global":
[]}}'
headers:
Access-Control-Allow-Credentials:
@@ -484,18 +469,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "797"
+ - "819"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:51 GMT
+ - Wed, 11 Dec 2024 19:17:40 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -513,14 +500,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"rdns":"172-105-55-85.ip.linodeusercontent.com"}'
+ body: '{"rdns":"194.195.115.15.nip.io"}'
form: {}
headers:
Accept:
@@ -529,12 +516,13 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/networking/ips/172.105.55.85
+ url: https://api.linode.com/v4beta/networking/ips/194.195.115.15
method: PUT
response:
- body: '{"address": "172.105.55.85", "gateway": "172.105.55.1", "subnet_mask":
- "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "172-105-55-85.ip.linodeusercontent.com",
- "linode_id": 61169669, "region": "ap-west", "vpc_nat_1_1": null}'
+ body: '{"address": "194.195.115.15", "gateway": "194.195.115.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "194.195.115.15.nip.io",
+ "linode_id": 68361103, "region": "ap-west", "vpc_nat_1_1": null, "reserved":
+ false}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -546,18 +534,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "248"
+ - "252"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:51 GMT
+ - Wed, 11 Dec 2024 19:17:43 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -574,14 +564,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: ""
+ body: '{"rdns":null}'
form: {}
headers:
Accept:
@@ -590,10 +580,267 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61169669
- method: DELETE
+ url: https://api.linode.com/v4beta/networking/ips/194.195.115.15
+ method: PUT
response:
- body: '{}'
+ body: '{"address": "194.195.115.15", "gateway": "194.195.115.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "194-195-115-15.ip.linodeusercontent.com",
+ "linode_id": 68361103, "region": "ap-west", "vpc_nat_1_1": null, "reserved":
+ false}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "270"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:17:43 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"reserved":true}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips/194.195.115.15
+ method: PUT
+ response:
+ body: '{"address": "194.195.115.15", "gateway": "194.195.115.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "194-195-115-15.ip.linodeusercontent.com",
+ "linode_id": 68361103, "region": "ap-west", "vpc_nat_1_1": null, "reserved":
+ true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "269"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:17:43 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"ap-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/networking/reserved/ips
+ method: POST
+ response:
+ body: '{"address": "172.105.63.218", "gateway": "172.105.63.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "172-105-63-218.ip.linodeusercontent.com",
+ "linode_id": null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "264"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:17:43 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"reserved":true}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips/172.105.63.218
+ method: PUT
+ response:
+ body: '{"address": "172.105.63.218", "gateway": "172.105.63.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "172-105-63-218.ip.linodeusercontent.com",
+ "linode_id": null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "264"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:17:43 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"reserved":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/networking/ips/194.195.115.15
+ method: PUT
+ response:
+ body: '{"address": "194.195.115.15", "gateway": "194.195.115.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "194-195-115-15.ip.linodeusercontent.com",
+ "linode_id": 68361103, "region": "ap-west", "vpc_nat_1_1": null, "reserved":
+ false}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -605,6 +852,937 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "270"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:17:44 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"ap-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/networking/reserved/ips
+ method: POST
+ response:
+ body: '{"address": "194.195.119.44", "gateway": "194.195.119.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "194-195-119-44.ip.linodeusercontent.com",
+ "linode_id": null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "265"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:17:44 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"ap-west","assignments":[{"address":"194.195.119.44","linode_id":68361103}]}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips/assign
+ method: POST
+ response:
+ body: '{}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "2"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:17:44 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"reserved":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/networking/ips/194.195.119.44
+ method: PUT
+ response:
+ body: '{"address": "194.195.119.44", "gateway": "194.195.119.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "194-195-119-44.ip.linodeusercontent.com",
+ "linode_id": 68361103, "region": "ap-west", "vpc_nat_1_1": null, "reserved":
+ false}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "270"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:17:44 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"ap-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/networking/reserved/ips
+ method: POST
+ response:
+ body: '{"address": "194.195.119.214", "gateway": "194.195.119.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "194-195-119-214.ip.linodeusercontent.com",
+ "linode_id": null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "267"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:17:44 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"reserved":true,"rdns":"sample rdns"}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips/194.195.119.214
+ method: PUT
+ response:
+ body: '{"errors": [{"reason": "Domain is not valid.", "field": "rdns"}]}'
+ 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
+ Content-Length:
+ - "65"
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:17:44 GMT
+ Pragma:
+ - no-cache
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Frame-Options:
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ status: 400 Bad Request
+ code: 400
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/reserved/ips/194.195.119.214
+ 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:
+ - Wed, 11 Dec 2024 19:17:45 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "10"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"ap-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/networking/reserved/ips
+ method: POST
+ response:
+ body: '{"address": "194.195.119.214", "gateway": "194.195.119.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "194-195-119-214.ip.linodeusercontent.com",
+ "linode_id": null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "267"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:17:45 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"reserved":true}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips/194.195.119.214
+ method: PUT
+ response:
+ body: '{"address": "194.195.119.214", "gateway": "194.195.119.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "194-195-119-214.ip.linodeusercontent.com",
+ "linode_id": null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "267"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:17:45 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/reserved/ips/194.195.119.214
+ 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:
+ - Wed, 11 Dec 2024 19:17:45 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "10"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"ap-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/networking/reserved/ips
+ method: POST
+ response:
+ body: '{"address": "194.195.119.214", "gateway": "194.195.119.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "194-195-119-214.ip.linodeusercontent.com",
+ "linode_id": null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "267"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:17:45 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"reserved":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/networking/ips/194.195.119.214
+ method: PUT
+ response:
+ body: '{"address": "194.195.119.214", "gateway": "194.195.119.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "194-195-119-214.ip.linodeusercontent.com",
+ "linode_id": null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": false}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "268"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:17:46 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/ips/194.195.119.214
+ 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:
+ - Wed, 11 Dec 2024 19:17:46 GMT
+ Pragma:
+ - no-cache
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_only
+ X-Frame-Options:
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ status: 404 Not Found
+ code: 404
+ duration: ""
+- request:
+ body: '{"reserved":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/networking/ips/123.72.121.76
+ method: PUT
+ 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
+ Content-Length:
+ - "37"
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:17:46 GMT
+ Pragma:
+ - no-cache
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Frame-Options:
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ status: 404 Not Found
+ code: 404
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/reserved/ips/194.195.119.44
+ method: DELETE
+ 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:
+ - Wed, 11 Dec 2024 19:17:46 GMT
+ Pragma:
+ - no-cache
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Frame-Options:
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "10"
+ status: 404 Not Found
+ code: 404
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/reserved/ips/172.105.63.218
+ 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:
+ - Wed, 11 Dec 2024 19:17:46 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "10"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ 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/68361103
+ 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:
@@ -616,7 +1794,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 13:31:51 GMT
+ - Wed, 11 Dec 2024 19:17:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -633,7 +1811,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
diff --git a/test/integration/fixtures/TestIPAddresses_Instance_Get.yaml b/test/integration/fixtures/TestIPAddresses_Instance_Get.yaml
index 5cc498263..c6e89bb79 100644
--- a/test/integration/fixtures/TestIPAddresses_Instance_Get.yaml
+++ b/test/integration/fixtures/TestIPAddresses_Instance_Get.yaml
@@ -15,293 +15,241 @@ interactions:
method: GET
response:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
- 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
- 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.34.5,172.105.35.5,172.105.36.5,172.105.37.5,172.105.38.5,172.105.39.5,172.105.40.5,172.105.41.5,172.105.42.5,172.105.43.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
- "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
- Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
- "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
- 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
+ "ca", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.0.5,172.105.3.5,172.105.4.5,172.105.5.5,172.105.6.5,172.105.7.5,172.105.8.5,172.105.9.5,172.105.10.5,172.105.11.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
- "au", "capabilities": ["Linodes", "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"}, "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": 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":
- 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", "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": 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, 1234::5678, 1234::5678"},
+ "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.166.5,172.105.169.5,172.105.168.5,172.105.172.5,172.105.162.5,172.105.170.5,172.105.167.5,172.105.171.5,172.105.181.5,172.105.161.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-iad", "label": "Washington, DC", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "139.144.192.62,139.144.192.60,139.144.192.61,139.144.192.53,139.144.192.54,139.144.192.67,139.144.192.69,139.144.192.66,139.144.192.52,139.144.192.68",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17,172.232.0.16,172.232.0.21,172.232.0.13,172.232.0.22,172.232.0.9,172.232.0.19,172.232.0.20,172.232.0.15,172.232.0.18",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "fr-par", "label": "Paris, FR", "country":
+ "fr", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.32.21,172.232.32.23,172.232.32.17,172.232.32.18,172.232.32.16,172.232.32.22,172.232.32.20,172.232.32.14,172.232.32.11,172.232.32.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-sea", "label": "Seattle, WA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,172.232.160.21,172.232.160.17,172.232.160.15,172.232.160.18,172.232.160.8,172.232.160.12,172.232.160.11,172.232.160.14,172.232.160.16",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
- "br", "capabilities": ["Linodes", "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"},
+ "br", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,172.233.0.9,172.233.0.7,172.233.0.12,172.233.0.5,172.233.0.13,172.233.0.10,172.233.0.6,172.233.0.8,172.233.0.11",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
- "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans", "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"},
+ "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.33.36,172.233.33.38,172.233.33.35,172.233.33.39,172.233.33.34,172.233.33.33,172.233.33.31,172.233.33.30,172.233.33.37,172.233.33.32",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
- "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
- 172.232.128.26, 172.232.128.20, 172.232.128.22, 172.232.128.25, 172.232.128.19,
- 172.232.128.23, 172.232.128.18, 172.232.128.21, 172.232.128.27", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
+ "se", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.232.128.24,172.232.128.26,172.232.128.20,172.232.128.22,172.232.128.25,172.232.128.19,172.232.128.23,172.232.128.18,172.232.128.21,172.232.128.27",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
- "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
- 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
- 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
+ "es", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,172.233.111.17,172.233.111.21,172.233.111.25,172.233.111.19,172.233.111.12,172.233.111.26,172.233.111.16,172.233.111.18,172.233.111.9",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
- "in", "capabilities": ["Linodes", "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, 1234::5678, 1234::5678"},
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.232.96.17,172.232.96.26,172.232.96.19,172.232.96.20,172.232.96.25,172.232.96.21,172.232.96.18,172.232.96.22,172.232.96.23,172.232.96.24",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
- "jp", "capabilities": ["Linodes", "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":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
- "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
- 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
- "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32,
- 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
- "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
- 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
- "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
- 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
- "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
- Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
- "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
- "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
- "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
- "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
- "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
- "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
- "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
- "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
- "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
- "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
- "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
- "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
- "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
- "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
- "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
- "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
- "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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",
- "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,
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.64.44,172.233.64.43,172.233.64.37,172.233.64.40,172.233.64.46,172.233.64.41,172.233.64.39,172.233.64.42,172.233.64.45,172.233.64.38",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "it-mil", "label": "Milan, IT", "country":
+ "it", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.192.19,172.232.192.18,172.232.192.16,172.232.192.20,172.232.192.24,172.232.192.21,172.232.192.22,172.232.192.17,172.232.192.15,172.232.192.23",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-mia", "label": "Miami, FL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.233.160.34,172.233.160.27,172.233.160.30,172.233.160.29,172.233.160.32,172.233.160.28,172.233.160.33,172.233.160.26,172.233.160.25,172.233.160.31",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "id-cgk", "label": "Jakarta, ID", "country":
+ "id", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.224.23,172.232.224.32,172.232.224.26,172.232.224.27,172.232.224.21,172.232.224.24,172.232.224.22,172.232.224.20,172.232.224.31,172.232.224.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-lax", "label": "Los Angeles, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.128.45,172.233.128.38,172.233.128.53,172.233.128.37,172.233.128.34,172.233.128.36,172.233.128.33,172.233.128.39,172.233.128.43,172.233.128.44",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "gb-lon", "label": "London 2, UK", "country":
+ "gb", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country":
+ "au", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-bom-2", "label": "Mumbai 2, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "de-fra-2", "label": "Frankfurt 2, DE", "country":
+ "de", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.203.9,172.236.203.16,172.236.203.19,172.236.203.15,172.236.203.17,172.236.203.11,172.236.203.18,172.236.203.14,172.236.203.13,172.236.203.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "sg-sin-2", "label": "Singapore 2, SG", "country":
+ "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-tyo-3", "label": "Tokyo 3, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "172.237.4.15,172.237.4.19,172.237.4.17,172.237.4.21,172.237.4.16,172.237.4.18,172.237.4.23,172.237.4.24,172.237.4.20,172.237.4.14",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-central", "label": "Dallas, TX", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5,72.14.188.5,173.255.199.5,66.228.53.5,96.126.122.5,96.126.124.5,96.126.127.5,198.58.107.5,198.58.111.5,23.239.24.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-west", "label": "Fremont, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5,
+ 173.230.147.5, 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5,
+ 173.255.244.5, 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "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",
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast",
+ "label": "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
"Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
- Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
- 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
- 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "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"}, "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",
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west",
+ "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5,
+ 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20,
+ 109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country":
+ "sg", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
"Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
- Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
- 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
- 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,139.162.131.5,139.162.132.5,139.162.133.5,139.162.134.5,139.162.135.5,139.162.136.5,139.162.137.5,139.162.138.5,139.162.139.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
- "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
- Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
- "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
- 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
- "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
- 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
- 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
- "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
- 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
- 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
- "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ 5}, "site_type": "core"}, {"id": "ap-northeast", "label": "Tokyo 2, JP", "country":
+ "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}], "page": 1, "pages": 1, "results": 31}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -324,7 +272,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 25 Jul 2024 18:31:41 GMT
+ - Wed, 11 Dec 2024 19:17:35 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -341,19 +289,16 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - account:read_write databases:read_write domains:read_write events:read_write
- firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
- longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
- volumes:read_write vpc:read_write
+ - '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"region":"us-iad","type":"g6-nanode-1","label":"go-test-ins-wo-disk-a8h235tq9wp0","firewall_id":693046,"booted":false}'
+ body: '{"region":"us-iad","type":"g6-nanode-1","label":"go-test-ins-wo-disk-870uf66ase4o","firewall_id":1339169,"booted":false}'
form: {}
headers:
Accept:
@@ -365,16 +310,17 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 61875710, "label": "go-test-ins-wo-disk-a8h235tq9wp0", "group":
+ body: '{"id": 68361100, "label": "go-test-ins-wo-disk-870uf66ase4o", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.233.202.247"], "ipv6": "1234::5678/128",
+ "type": "g6-nanode-1", "ipv4": ["172.234.39.119"], "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}'
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm",
+ "watchdog_enabled": true, "tags": [], "host_uuid": "17770b21ecd52c259b180efcb46d6a50f80301b2",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": ["Block Storage Encryption"]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -392,20 +338,19 @@ interactions:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
- Content-Length:
- - "807"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 25 Jul 2024 18:31:41 GMT
+ - Wed, 11 Dec 2024 19:17:36 GMT
Pragma:
- no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- Authorization, X-Filter
+ - Accept-Encoding
X-Accepted-Oauth-Scopes:
- linodes:read_write
X-Content-Type-Options:
@@ -414,19 +359,16 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - account:read_write databases:read_write domains:read_write events:read_write
- firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
- longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
- volumes:read_write vpc:read_write
+ - '*'
X-Ratelimit-Limit:
- - "10"
+ - "8"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-0z29w7ld63ro","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-0mtdc7512fl4","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -435,11 +377,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61875710/configs
+ url: https://api.linode.com/v4beta/linode/instances/68361100/configs
method: POST
response:
- body: '{"id": 65096198, "label": "go-test-conf-0z29w7ld63ro", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
+ body: '{"id": 71709947, "label": "go-test-conf-0mtdc7512fl4", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
@@ -463,13 +405,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "540"
+ - "539"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 25 Jul 2024 18:31:42 GMT
+ - Wed, 11 Dec 2024 19:17:36 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -484,19 +426,16 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - account:read_write databases:read_write domains:read_write events:read_write
- firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
- longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
- volumes:read_write vpc:read_write
+ - '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"label":"go-test-vpc-1721932302138084000","region":"us-iad","subnets":[{"label":"linodego-vpc-test-1721932302138290000","ipv4":"192.168.0.0/25"}]}'
+ body: '{"label":"go-test-vpc-1733944656783596000","region":"us-iad","subnets":[{"label":"linodego-vpc-test-1733944656783660000","ipv4":"192.168.0.0/25"}]}'
form: {}
headers:
Accept:
@@ -508,8 +447,8 @@ interactions:
url: https://api.linode.com/v4beta/vpcs
method: POST
response:
- body: '{"id": 78854, "label": "go-test-vpc-1721932302138084000", "description":
- "", "region": "us-iad", "subnets": [{"id": 76467, "label": "linodego-vpc-test-1721932302138290000",
+ body: '{"id": 129744, "label": "go-test-vpc-1733944656783596000", "description":
+ "", "region": "us-iad", "subnets": [{"id": 124762, "label": "linodego-vpc-test-1733944656783660000",
"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"}'
@@ -531,13 +470,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "365"
+ - "367"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 25 Jul 2024 18:31:42 GMT
+ - Wed, 11 Dec 2024 19:17:37 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -552,19 +491,16 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - account:read_write databases:read_write domains:read_write events:read_write
- firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
- longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
- volumes:read_write vpc:read_write
+ - '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- 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"}'
+ body: '{"label":"go-test-conf-0mtdc7512fl4","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":124762,"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:
@@ -573,23 +509,23 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61875710/configs/65096198
+ url: https://api.linode.com/v4beta/linode/instances/68361100/configs/71709947
method: PUT
response:
- body: '{"id": 65096198, "label": "go-test-conf-0z29w7ld63ro", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
+ body: '{"id": 71709947, "label": "go-test-conf-0mtdc7512fl4", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
"sdf": null, "sdg": null, "sdh": null}, "initrd": null, "run_level": "default",
- "virt_mode": "paravirt", "interfaces": [{"id": 2047975, "purpose": "public",
+ "virt_mode": "paravirt", "interfaces": [{"id": 3595737, "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":
- 2047976, "purpose": "vlan", "primary": false, "active": false, "ipam_address":
+ 3595738, "purpose": "vlan", "primary": false, "active": false, "ipam_address":
"", "label": "testvlan", "vpc_id": null, "subnet_id": null, "ipv4": null, "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": null}, {"id": 3595739, "purpose": "vpc", "primary": false,
+ "active": false, "ipam_address": null, "label": null, "vpc_id": 129744, "subnet_id":
+ 124762, "ipv4": {"vpc": "192.168.0.2", "nat_1_1": "172.234.39.119"}, "ipv6":
null, "ip_ranges": []}]}'
headers:
Access-Control-Allow-Credentials:
@@ -613,7 +549,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 25 Jul 2024 18:31:42 GMT
+ - Wed, 11 Dec 2024 19:17:37 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -629,12 +565,9 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - account:read_write databases:read_write domains:read_write events:read_write
- firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
- longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
- volumes:read_write vpc:read_write
+ - '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -650,23 +583,24 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61875710/ips
+ url: https://api.linode.com/v4beta/linode/instances/68361100/ips
method: GET
response:
- body: '{"ipv4": {"public": [{"address": "172.233.202.247", "gateway": "172.233.202.1",
+ body: '{"ipv4": {"public": [{"address": "172.234.39.119", "gateway": "172.234.39.1",
"subnet_mask": "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true,
- "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": 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",
+ "rdns": "172-234-39-119.ip.linodeusercontent.com", "linode_id": 68361100, "region":
+ "us-iad", "vpc_nat_1_1": {"vpc_id": 129744, "subnet_id": 124762, "address":
+ "192.168.0.2"}, "reserved": false}], "private": [], "shared": [], "reserved":
+ [], "vpc": [{"address": "192.168.0.2", "address_range": null, "vpc_id": 129744,
+ "subnet_id": 124762, "region": "us-iad", "linode_id": 68361100, "config_id":
+ 71709947, "interface_id": 3595739, "nodebalancer_id": null, "active": false,
+ "nat_1_1": "172.234.39.119", "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": 61875710, "region": "us-iad", "public":
+ "type": "ipv6", "rdns": null, "linode_id": 68361100, "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": 61875710, "region": "us-iad", "public": false}, "global":
+ null, "linode_id": 68361100, "region": "us-iad", "public": false}, "global":
[]}}'
headers:
Access-Control-Allow-Credentials:
@@ -690,7 +624,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 25 Jul 2024 18:31:42 GMT
+ - Wed, 11 Dec 2024 19:17:37 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -707,12 +641,9 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - account:read_write databases:read_write domains:read_write events:read_write
- firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
- longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
- volumes:read_write vpc:read_write
+ - '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -728,7 +659,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61875710
+ url: https://api.linode.com/v4beta/linode/instances/68361100
method: DELETE
response:
body: '{}'
@@ -756,7 +687,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 25 Jul 2024 18:31:43 GMT
+ - Wed, 11 Dec 2024 19:17:39 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -771,12 +702,9 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - account:read_write databases:read_write domains:read_write events:read_write
- firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
- longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
- volumes:read_write vpc:read_write
+ - '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -792,7 +720,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/vpcs/78854
+ url: https://api.linode.com/v4beta/vpcs/129744
method: DELETE
response:
body: '{}'
@@ -820,7 +748,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 25 Jul 2024 18:31:43 GMT
+ - Wed, 11 Dec 2024 19:17:39 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -835,12 +763,9 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - account:read_write databases:read_write domains:read_write events:read_write
- firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
- longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
- volumes:read_write vpc:read_write
+ - '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
diff --git a/test/integration/fixtures/TestIPAddresses_List.yaml b/test/integration/fixtures/TestIPAddresses_List.yaml
index b1d022faf..a7b7751a6 100644
--- a/test/integration/fixtures/TestIPAddresses_List.yaml
+++ b/test/integration/fixtures/TestIPAddresses_List.yaml
@@ -15,293 +15,241 @@ interactions:
method: GET
response:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
- 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
- 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.34.5,172.105.35.5,172.105.36.5,172.105.37.5,172.105.38.5,172.105.39.5,172.105.40.5,172.105.41.5,172.105.42.5,172.105.43.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
- "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
- Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
- "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
- 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
+ "ca", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.0.5,172.105.3.5,172.105.4.5,172.105.5.5,172.105.6.5,172.105.7.5,172.105.8.5,172.105.9.5,172.105.10.5,172.105.11.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
- "au", "capabilities": ["Linodes", "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"}, "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": 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":
- 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", "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": 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, 1234::5678, 1234::5678"},
+ "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.166.5,172.105.169.5,172.105.168.5,172.105.172.5,172.105.162.5,172.105.170.5,172.105.167.5,172.105.171.5,172.105.181.5,172.105.161.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-iad", "label": "Washington, DC", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "139.144.192.62,139.144.192.60,139.144.192.61,139.144.192.53,139.144.192.54,139.144.192.67,139.144.192.69,139.144.192.66,139.144.192.52,139.144.192.68",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17,172.232.0.16,172.232.0.21,172.232.0.13,172.232.0.22,172.232.0.9,172.232.0.19,172.232.0.20,172.232.0.15,172.232.0.18",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "fr-par", "label": "Paris, FR", "country":
+ "fr", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.32.21,172.232.32.23,172.232.32.17,172.232.32.18,172.232.32.16,172.232.32.22,172.232.32.20,172.232.32.14,172.232.32.11,172.232.32.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-sea", "label": "Seattle, WA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,172.232.160.21,172.232.160.17,172.232.160.15,172.232.160.18,172.232.160.8,172.232.160.12,172.232.160.11,172.232.160.14,172.232.160.16",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
- "br", "capabilities": ["Linodes", "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"},
+ "br", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,172.233.0.9,172.233.0.7,172.233.0.12,172.233.0.5,172.233.0.13,172.233.0.10,172.233.0.6,172.233.0.8,172.233.0.11",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
- "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans", "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"},
+ "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.33.36,172.233.33.38,172.233.33.35,172.233.33.39,172.233.33.34,172.233.33.33,172.233.33.31,172.233.33.30,172.233.33.37,172.233.33.32",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
- "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24,
- 172.232.128.26, 172.232.128.20, 172.232.128.22, 172.232.128.25, 172.232.128.19,
- 172.232.128.23, 172.232.128.18, 172.232.128.21, 172.232.128.27", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
+ "se", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.232.128.24,172.232.128.26,172.232.128.20,172.232.128.22,172.232.128.25,172.232.128.19,172.232.128.23,172.232.128.18,172.232.128.21,172.232.128.27",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
- "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,
- 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12,
- 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
+ "es", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,172.233.111.17,172.233.111.21,172.233.111.25,172.233.111.19,172.233.111.12,172.233.111.26,172.233.111.16,172.233.111.18,172.233.111.9",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
- "in", "capabilities": ["Linodes", "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, 1234::5678, 1234::5678"},
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.232.96.17,172.232.96.26,172.232.96.19,172.232.96.20,172.232.96.25,172.232.96.21,172.232.96.18,172.232.96.22,172.232.96.23,172.232.96.24",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
- "jp", "capabilities": ["Linodes", "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":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
- "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
- 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
- "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32,
- 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
- "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
- 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
- "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
- 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-den-edge-1",
- "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud
- Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1",
- "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes",
- "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1",
- "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes",
- "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1",
- "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes",
- "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1",
- "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes",
- "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1",
- "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes",
- "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1",
- "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
- "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1",
- "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes",
- "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1",
- "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes",
- "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central",
- "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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",
- "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,
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.64.44,172.233.64.43,172.233.64.37,172.233.64.40,172.233.64.46,172.233.64.41,172.233.64.39,172.233.64.42,172.233.64.45,172.233.64.38",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "it-mil", "label": "Milan, IT", "country":
+ "it", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.192.19,172.232.192.18,172.232.192.16,172.232.192.20,172.232.192.24,172.232.192.21,172.232.192.22,172.232.192.17,172.232.192.15,172.232.192.23",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-mia", "label": "Miami, FL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.233.160.34,172.233.160.27,172.233.160.30,172.233.160.29,172.233.160.32,172.233.160.28,172.233.160.33,172.233.160.26,172.233.160.25,172.233.160.31",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "id-cgk", "label": "Jakarta, ID", "country":
+ "id", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.224.23,172.232.224.32,172.232.224.26,172.232.224.27,172.232.224.21,172.232.224.24,172.232.224.22,172.232.224.20,172.232.224.31,172.232.224.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-lax", "label": "Los Angeles, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.128.45,172.233.128.38,172.233.128.53,172.233.128.37,172.233.128.34,172.233.128.36,172.233.128.33,172.233.128.39,172.233.128.43,172.233.128.44",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "gb-lon", "label": "London 2, UK", "country":
+ "gb", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country":
+ "au", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-bom-2", "label": "Mumbai 2, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "de-fra-2", "label": "Frankfurt 2, DE", "country":
+ "de", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.203.9,172.236.203.16,172.236.203.19,172.236.203.15,172.236.203.17,172.236.203.11,172.236.203.18,172.236.203.14,172.236.203.13,172.236.203.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "sg-sin-2", "label": "Singapore 2, SG", "country":
+ "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-tyo-3", "label": "Tokyo 3, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "172.237.4.15,172.237.4.19,172.237.4.17,172.237.4.21,172.237.4.16,172.237.4.18,172.237.4.23,172.237.4.24,172.237.4.20,172.237.4.14",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-central", "label": "Dallas, TX", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5,72.14.188.5,173.255.199.5,66.228.53.5,96.126.122.5,96.126.124.5,96.126.127.5,198.58.107.5,198.58.111.5,23.239.24.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-west", "label": "Fremont, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5,
+ 173.230.147.5, 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5,
+ 173.255.244.5, 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "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",
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast",
+ "label": "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
"Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
- Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
- 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
- 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "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"}, "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",
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west",
+ "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5,
+ 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20,
+ 109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country":
+ "sg", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
"Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
- Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
- 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
- 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,139.162.131.5,139.162.132.5,139.162.133.5,139.162.134.5,139.162.135.5,139.162.136.5,139.162.137.5,139.162.138.5,139.162.139.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
- "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
- Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
- "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5,
- 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
- "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
- 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
- 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
- "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
- 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
- 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
- "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- 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}'
+ 5}, "site_type": "core"}, {"id": "ap-northeast", "label": "Tokyo 2, JP", "country":
+ "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}], "page": 1, "pages": 1, "results": 31}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -324,7 +272,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 25 Jul 2024 18:32:53 GMT
+ - Wed, 11 Dec 2024 19:17:32 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -341,19 +289,16 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - account:read_write databases:read_write domains:read_write events:read_write
- firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
- longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
- volumes:read_write vpc:read_write
+ - '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-9s5wo423f2cr","firewall_id":693050,"booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-5jr09a19bf3x","firewall_id":1339169,"booted":false}'
form: {}
headers:
Accept:
@@ -365,16 +310,17 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 61875749, "label": "go-test-ins-wo-disk-9s5wo423f2cr", "group":
+ body: '{"id": 68361097, "label": "go-test-ins-wo-disk-5jr09a19bf3x", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["170.187.250.130"], "ipv6": "1234::5678/128",
+ "type": "g6-nanode-1", "ipv4": ["194.195.115.5"], "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}'
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm",
+ "watchdog_enabled": true, "tags": [], "host_uuid": "58b502ff98a4081434a97fe5a4f00bb7835d155c",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": []}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -392,20 +338,19 @@ interactions:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
- Content-Length:
- - "808"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 25 Jul 2024 18:32:53 GMT
+ - Wed, 11 Dec 2024 19:17:32 GMT
Pragma:
- no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- Authorization, X-Filter
+ - Accept-Encoding
X-Accepted-Oauth-Scopes:
- linodes:read_write
X-Content-Type-Options:
@@ -414,19 +359,16 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - account:read_write databases:read_write domains:read_write events:read_write
- firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
- longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
- volumes:read_write vpc:read_write
+ - '*'
X-Ratelimit-Limit:
- - "10"
+ - "8"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-6vqp59eug488","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-sqe7s80k602s","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -435,11 +377,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61875749/configs
+ url: https://api.linode.com/v4beta/linode/instances/68361097/configs
method: POST
response:
- body: '{"id": 65096250, "label": "go-test-conf-6vqp59eug488", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount":
+ body: '{"id": 71709944, "label": "go-test-conf-sqe7s80k602s", "helpers": {"updatedb_disabled":
+ true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
"devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null,
@@ -463,13 +405,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "540"
+ - "539"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 25 Jul 2024 18:32:54 GMT
+ - Wed, 11 Dec 2024 19:17:32 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -484,12 +426,9 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - account:read_write databases:read_write domains:read_write events:read_write
- firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
- longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
- volumes:read_write vpc:read_write
+ - '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -506,75 +445,26 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"linode_id":61875749}'
+ - '{"linode_id":68361097}'
url: https://api.linode.com/v4beta/networking/ips?page=1
method: GET
response:
- 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},
+ body: '{"page": 1, "pages": 1, "results": 5, "data": [{"address": "194.195.115.5",
+ "gateway": "194.195.115.1", "subnet_mask": "255.255.255.0", "prefix": 24, "type":
+ "ipv4", "public": true, "rdns": "194-195-115-5.ip.linodeusercontent.com", "linode_id":
+ 68361097, "region": "ap-west", "vpc_nat_1_1": null, "reserved": false}, {"address":
+ "172.105.63.175", "gateway": "172.105.63.1", "subnet_mask": "255.255.255.0",
+ "prefix": 24, "type": "ipv4", "public": true, "rdns": "172-105-63-175.ip.linodeusercontent.com",
+ "linode_id": null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": true},
+ {"address": "45.79.124.133", "gateway": "45.79.124.1", "subnet_mask": "255.255.255.0",
+ "prefix": 24, "type": "ipv4", "public": true, "rdns": "45-79-124-133.ip.linodeusercontent.com",
+ "linode_id": null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": true},
+ {"address": "194.195.115.161", "gateway": "194.195.115.1", "subnet_mask": "255.255.255.0",
+ "prefix": 24, "type": "ipv4", "public": true, "rdns": "194-195-115-161.ip.linodeusercontent.com",
+ "linode_id": null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": 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": 61874266, "region": "ap-west", "public":
- true}, {"address": "1234::5678", "gateway": "1234::5678", "subnet_mask":
- "1234::5678", "prefix": 64, "type": "ipv6", "rdns": null, "linode_id":
- 61875749, "region": "ap-west", "public": true}]}'
+ 68361097, "region": "ap-west", "public": true}]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -597,7 +487,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 25 Jul 2024 18:32:54 GMT
+ - Wed, 11 Dec 2024 19:17:32 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -614,12 +504,9 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - account:read_write databases:read_write domains:read_write events:read_write
- firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
- longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
- volumes:read_write vpc:read_write
+ - '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -638,71 +525,22 @@ interactions:
url: https://api.linode.com/v4beta/networking/ips?page=1&skip_ipv6_rdns=true
method: GET
response:
- 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},
+ body: '{"page": 1, "pages": 1, "results": 5, "data": [{"address": "194.195.115.5",
+ "gateway": "194.195.115.1", "subnet_mask": "255.255.255.0", "prefix": 24, "type":
+ "ipv4", "public": true, "rdns": "194-195-115-5.ip.linodeusercontent.com", "linode_id":
+ 68361097, "region": "ap-west", "vpc_nat_1_1": null, "reserved": false}, {"address":
+ "172.105.63.175", "gateway": "172.105.63.1", "subnet_mask": "255.255.255.0",
+ "prefix": 24, "type": "ipv4", "public": true, "rdns": "172-105-63-175.ip.linodeusercontent.com",
+ "linode_id": null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": true},
+ {"address": "45.79.124.133", "gateway": "45.79.124.1", "subnet_mask": "255.255.255.0",
+ "prefix": 24, "type": "ipv4", "public": true, "rdns": "45-79-124-133.ip.linodeusercontent.com",
+ "linode_id": null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": true},
+ {"address": "194.195.115.161", "gateway": "194.195.115.1", "subnet_mask": "255.255.255.0",
+ "prefix": 24, "type": "ipv4", "public": true, "rdns": "194-195-115-161.ip.linodeusercontent.com",
+ "linode_id": null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": 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": 61874266, "region": "ap-west", "public":
- true}, {"address": "1234::5678", "gateway": "1234::5678", "subnet_mask":
- "1234::5678", "prefix": 64, "type": "ipv6", "rdns": null, "linode_id":
- 61875749, "region": "ap-west", "public": true}]}'
+ 68361097, "region": "ap-west", "public": true}]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -725,7 +563,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 25 Jul 2024 18:32:54 GMT
+ - Wed, 11 Dec 2024 19:17:32 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -742,12 +580,9 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - account:read_write databases:read_write domains:read_write events:read_write
- firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
- longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
- volumes:read_write vpc:read_write
+ - '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -763,7 +598,147 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61875749
+ X-Filter:
+ - '{"reserved":true}'
+ url: https://api.linode.com/v4beta/networking/ips?page=1
+ method: GET
+ response:
+ body: '{"page": 1, "pages": 1, "results": 3, "data": [{"address": "172.105.63.175",
+ "gateway": "172.105.63.1", "subnet_mask": "255.255.255.0", "prefix": 24, "type":
+ "ipv4", "public": true, "rdns": "172-105-63-175.ip.linodeusercontent.com", "linode_id":
+ null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": true}, {"address":
+ "45.79.124.133", "gateway": "45.79.124.1", "subnet_mask": "255.255.255.0", "prefix":
+ 24, "type": "ipv4", "public": true, "rdns": "45-79-124-133.ip.linodeusercontent.com",
+ "linode_id": null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": true},
+ {"address": "194.195.115.161", "gateway": "194.195.115.1", "subnet_mask": "255.255.255.0",
+ "prefix": 24, "type": "ipv4", "public": true, "rdns": "194-195-115-161.ip.linodeusercontent.com",
+ "linode_id": null, "region": "ap-west", "vpc_nat_1_1": null, "reserved": true}]}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "845"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:17:33 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ X-Filter:
+ - '{"reserved":false}'
+ url: https://api.linode.com/v4beta/networking/ips?page=1
+ method: GET
+ response:
+ body: '{"page": 1, "pages": 1, "results": 1, "data": [{"address": "194.195.115.5",
+ "gateway": "194.195.115.1", "subnet_mask": "255.255.255.0", "prefix": 24, "type":
+ "ipv4", "public": true, "rdns": "194-195-115-5.ip.linodeusercontent.com", "linode_id":
+ 68361097, "region": "ap-west", "vpc_nat_1_1": null, "reserved": false}]}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "317"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 11 Dec 2024 19:17:33 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances/68361097
method: DELETE
response:
body: '{}'
@@ -791,7 +766,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 25 Jul 2024 18:32:54 GMT
+ - Wed, 11 Dec 2024 19:17:35 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -806,12 +781,9 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - account:read_write databases:read_write domains:read_write events:read_write
- firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
- longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
- volumes:read_write vpc:read_write
+ - '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
diff --git a/test/integration/fixtures/TestInstance_DeleteInstanceVariants.yaml b/test/integration/fixtures/TestInstance_DeleteInstanceVariants.yaml
new file mode 100644
index 000000000..65493ece5
--- /dev/null
+++ b/test/integration/fixtures/TestInstance_DeleteInstanceVariants.yaml
@@ -0,0 +1,651 @@
+---
+version: 1
+interactions:
+- request:
+ body: '{"region":"us-east"}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/reserved/ips
+ method: POST
+ response:
+ body: '{"address": "69.164.211.224", "gateway": "69.164.211.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "69-164-211-224.ip.linodeusercontent.com",
+ "linode_id": null, "region": "us-east", "vpc_nat_1_1": null, "reserved": true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "264"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Mon, 30 Sep 2024 16:52:04 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "800"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"us-east","type":"g6-nanode-1","label":"go-test-ins-reserved-ip-c1t2pb490c1p","root_pass":"TxEZAoyb0\u003eH7P\\[l0L\u003ccr?9y[UD5u\u003eH(Rv6v}A0u]9L1j0w0:4|E$6^]39M[K4yx","image":"linode/alpine3.17","interfaces":[{"purpose":"public"}],"booted":false,"ipv4":["69.164.211.224"]}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances
+ method: POST
+ response:
+ body: '{"id": 64649882, "label": "go-test-ins-reserved-ip-c1t2pb490c1p", "group":
+ "", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "type": "g6-nanode-1", "ipv4": ["69.164.211.224"], "ipv6": "1234::5678/128",
+ "image": "linode/alpine3.17", "region": "us-east", "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": false, "available": false, "schedule": {"day":
+ null, "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled":
+ true, "tags": [], "host_uuid": "091414d3185b27660e1fe9157da7bcc48d9f51cd", "has_user_data":
+ false, "placement_group": null, "disk_encryption": "disabled", "lke_cluster_id":
+ null, "capabilities": []}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Mon, 30 Sep 2024 16:52:06 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Accept-Encoding
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "10"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ 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/64649882
+ 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:
+ - Mon, 30 Sep 2024 16:52:08 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "800"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/reserved/ips/69.164.211.224
+ method: GET
+ response:
+ body: '{"address": "69.164.211.224", "gateway": "69.164.211.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "69-164-211-224.ip.linodeusercontent.com",
+ "linode_id": null, "region": "us-east", "vpc_nat_1_1": null, "reserved": true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "264"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Mon, 30 Sep 2024 16:52:08 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "10"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"us-east","type":"g6-nanode-1","label":"test-instance-freed-ip","root_pass":"Bqlo\u003e*1IBe57500Tc50e0\u003eNqESxQ4Z!Ea,\u0026+h`\u003e\u00264l2$0XD`QM(t`2uO/(a66Wyj","ipv4":["69.164.211.224"]}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances
+ method: POST
+ response:
+ body: '{"id": 64649889, "label": "test-instance-freed-ip", "group": "", "status":
+ "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "type": "g6-nanode-1", "ipv4": ["69.164.211.224"], "ipv6": "1234::5678/128",
+ "image": null, "region": "us-east", "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": false, "available": false, "schedule": {"day": null,
+ "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled":
+ true, "tags": [], "host_uuid": "a452b4b8a90dc1c3f7a916bd423079b94bd11772", "has_user_data":
+ false, "placement_group": null, "disk_encryption": "disabled", "lke_cluster_id":
+ null, "capabilities": []}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "849"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Mon, 30 Sep 2024 16:52:08 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "10"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/reserved/ips/69.164.211.224
+ method: GET
+ response:
+ body: '{"address": "69.164.211.224", "gateway": "69.164.211.1", "subnet_mask":
+ "255.255.255.0", "prefix": 24, "type": "ipv4", "public": true, "rdns": "69-164-211-224.ip.linodeusercontent.com",
+ "linode_id": 64649889, "region": "us-east", "vpc_nat_1_1": null, "reserved":
+ true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "268"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Mon, 30 Sep 2024 16:52:08 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "10"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"us-east","type":"g6-nanode-1","label":"ephemeral-ip-test","root_pass":"?b7~}tJqzQ8/GsT1\u003c1BS3Zn9R67nhsA[kZ@g=X3}B-^z88x\u003eRG^08CzOp*2\\:97g"}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances
+ method: POST
+ response:
+ body: '{"id": 64649890, "label": "ephemeral-ip-test", "group": "", "status": "provisioning",
+ "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "type":
+ "g6-nanode-1", "ipv4": ["69.164.215.150"], "ipv6": "1234::5678/128",
+ "image": null, "region": "us-east", "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": false, "available": false, "schedule": {"day": null,
+ "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled":
+ true, "tags": [], "host_uuid": "58a354ebdb494a9193cafdc0920899b2b5ce7333", "has_user_data":
+ false, "placement_group": null, "disk_encryption": "disabled", "lke_cluster_id":
+ null, "capabilities": []}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "844"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Mon, 30 Sep 2024 16:52:09 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "10"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ 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/64649890
+ 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:
+ - Mon, 30 Sep 2024 16:52:11 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "800"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances/64649889
+ 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:
+ - Mon, 30 Sep 2024 16:52:13 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "800"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/networking/reserved/ips/69.164.211.224
+ 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:
+ - Mon, 30 Sep 2024 16:52:13 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - ips:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "10"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
diff --git a/test/integration/fixtures/TestInstance_Disk_Clone.yaml b/test/integration/fixtures/TestInstance_Disk_Clone.yaml
index 06333ea8c..15e9c7af9 100644
--- a/test/integration/fixtures/TestInstance_Disk_Clone.yaml
+++ b/test/integration/fixtures/TestInstance_Disk_Clone.yaml
@@ -15,276 +15,238 @@ interactions:
method: GET
response:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
- 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
- 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.34.5,172.105.35.5,172.105.36.5,172.105.37.5,172.105.38.5,172.105.39.5,172.105.40.5,172.105.41.5,172.105.42.5,172.105.43.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
- "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
- Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
- "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
- 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
+ "ca", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.0.5,172.105.3.5,172.105.4.5,172.105.5.5,172.105.6.5,172.105.7.5,172.105.8.5,172.105.9.5,172.105.10.5,172.105.11.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
- "au", "capabilities": ["Linodes", "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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
- "Washington, DC", "country": "us", "capabilities": ["Linodes", "Block Storage
- Encryption", "Backups", "NodeBalancers", "Block Storage", "Object Storage",
- "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
- "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62,
- 139.144.192.60, 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67,
- 139.144.192.69, 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
+ "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.166.5,172.105.169.5,172.105.168.5,172.105.172.5,172.105.162.5,172.105.170.5,172.105.167.5,172.105.171.5,172.105.181.5,172.105.161.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-iad", "label": "Washington, DC", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "139.144.192.62,139.144.192.60,139.144.192.61,139.144.192.53,139.144.192.54,139.144.192.67,139.144.192.69,139.144.192.66,139.144.192.52,139.144.192.68",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
- "us", "capabilities": ["Linodes", "Block Storage Encryption", "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": null, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "fr-par", "label": "Paris, FR", "country": "fr", "capabilities":
- ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
- "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Block Storage Encryption",
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17,172.232.0.16,172.232.0.21,172.232.0.13,172.232.0.22,172.232.0.9,172.232.0.19,172.232.0.20,172.232.0.15,172.232.0.18",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "fr-par", "label": "Paris, FR", "country":
+ "fr", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.32.21,172.232.32.23,172.232.32.17,172.232.32.18,172.232.32.16,172.232.32.22,172.232.32.20,172.232.32.14,172.232.32.11,172.232.32.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-sea", "label": "Seattle, WA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
"Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
"Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
- "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19, 172.232.160.21,
- 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8, 172.232.160.12,
- 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,172.232.160.21,172.232.160.17,172.232.160.15,172.232.160.18,172.232.160.8,172.232.160.12,172.232.160.11,172.232.160.14,172.232.160.16",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
- "br", "capabilities": ["Linodes", "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"},
+ "br", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,172.233.0.9,172.233.0.7,172.233.0.12,172.233.0.5,172.233.0.13,172.233.0.10,172.233.0.6,172.233.0.8,172.233.0.11",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
- "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
- "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38, 172.233.33.35,
- 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30, 172.233.33.37,
- 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities":
- ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed
- Databases", "Metadata", "Premium Plans", "Placement Group"], "status": "ok",
- "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22,
- 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21,
- 172.232.128.27", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities":
- ["Linodes", "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",
+ "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.33.36,172.233.33.38,172.233.33.35,172.233.33.39,172.233.33.34,172.233.33.33,172.233.33.31,172.233.33.30,172.233.33.37,172.233.33.32",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.232.128.24,172.232.128.26,172.232.128.20,172.232.128.22,172.232.128.25,172.232.128.19,172.232.128.23,172.232.128.18,172.232.128.21,172.232.128.27",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,172.233.111.17,172.233.111.21,172.233.111.25,172.233.111.19,172.233.111.12,172.233.111.26,172.233.111.16,172.233.111.18,172.233.111.9",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
- "in", "capabilities": ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
- "status": "ok", "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19,
- 172.232.96.20, 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23,
- 172.232.96.24", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country": "jp", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
- Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
- "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
- 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
- "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
- 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
- "Miami, FL", "country": "us", "capabilities": ["Linodes", "Block Storage Encryption",
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.232.96.17,172.232.96.26,172.232.96.19,172.232.96.20,172.232.96.25,172.232.96.21,172.232.96.18,172.232.96.22,172.232.96.23,172.232.96.24",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.64.44,172.233.64.43,172.233.64.37,172.233.64.40,172.233.64.46,172.233.64.41,172.233.64.39,172.233.64.42,172.233.64.45,172.233.64.38",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "it-mil", "label": "Milan, IT", "country":
+ "it", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.192.19,172.232.192.18,172.232.192.16,172.232.192.20,172.232.192.24,172.232.192.21,172.232.192.22,172.232.192.17,172.232.192.15,172.232.192.23",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-mia", "label": "Miami, FL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
"Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
"Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans", "Placement Group"], "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"},
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.233.160.34,172.233.160.27,172.233.160.30,172.233.160.29,172.233.160.32,172.233.160.28,172.233.160.33,172.233.160.26,172.233.160.25,172.233.160.31",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "id-cgk", "label": "Jakarta, ID", "country":
- "id", "capabilities": ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
- 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
- "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Block Storage
- Encryption", "Backups", "NodeBalancers", "Block Storage", "Object Storage",
- "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
- "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.128.45, 172.233.128.38,
- 172.233.128.53, 172.233.128.37, 172.233.128.34, 172.233.128.36, 172.233.128.33,
- 172.233.128.39, 172.233.128.43, 172.233.128.44", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
+ "id", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.224.23,172.232.224.32,172.232.224.26,172.232.224.27,172.232.224.21,172.232.224.24,172.232.224.22,172.232.224.20,172.232.224.31,172.232.224.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-lax", "label": "Los Angeles, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.128.45,172.233.128.38,172.233.128.53,172.233.128.37,172.233.128.34,172.233.128.36,172.233.128.33,172.233.128.39,172.233.128.43,172.233.128.44",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "gb-lon", "label": "London 2, UK", "country":
- "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
- "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48",
+ "gb", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country":
- "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
- "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34",
+ "au", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "in-bom-2", "label": "Mumbai 2, IN", "country":
- "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"],
- "status": "ok", "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28",
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "de-fra-2", "label": "Frankfurt 2, DE", "country":
- "de", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.236.203.9,172.236.203.16,172.236.203.19,172.236.203.15,172.236.203.17,172.236.203.11,172.236.203.18,172.236.203.14,172.236.203.13,172.236.203.12",
+ "de", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.203.9,172.236.203.16,172.236.203.19,172.236.203.15,172.236.203.17,172.236.203.11,172.236.203.18,172.236.203.14,172.236.203.13,172.236.203.12",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "sg-sin-2", "label": "Singapore 2, SG", "country":
- "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers",
- "Block Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
- "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47",
+ "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "jp-tyo-3", "label": "Tokyo 3, JP", "country":
- "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
- "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.237.4.15,172.237.4.19,172.237.4.17,172.237.4.21,172.237.4.16,172.237.4.18,172.237.4.23,172.237.4.24,172.237.4.20,172.237.4.14",
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "172.237.4.15,172.237.4.19,172.237.4.17,172.237.4.21,172.237.4.16,172.237.4.18,172.237.4.23,172.237.4.24,172.237.4.20,172.237.4.14",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "us-central", "label": "Dallas, TX", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
- Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
- "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5, 96.126.124.5,
- 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6": "1234::5678,
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5,72.14.188.5,173.255.199.5,66.228.53.5,96.126.122.5,96.126.124.5,96.126.127.5,198.58.107.5,198.58.111.5,23.239.24.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-west", "label": "Fremont, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5,
+ 173.230.147.5, 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5,
+ 173.255.244.5, 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-west",
- "label": "Fremont, CA", "country": "us", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
- "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, 173.255.212.5,
- 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, 74.207.242.5",
- "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
- Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
- "Managed Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.5",
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast",
+ "label": "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.5",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata", "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", "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",
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
"Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
- Group"], "status": "ok", "resolvers": {"ipv4": "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",
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5,
+ 96.126.106.5, 50.116.53.5, 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5,
+ 97.107.133.4, 207.192.69.4, 207.192.69.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west",
+ "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5,
+ 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20,
+ 109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country":
+ "sg", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
- "de", "capabilities": ["Linodes", "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",
+ "de", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,139.162.131.5,139.162.132.5,139.162.133.5,139.162.134.5,139.162.135.5,139.162.136.5,139.162.137.5,139.162.138.5,139.162.139.5",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "ap-northeast", "label": "Tokyo 2, JP", "country":
- "jp", "capabilities": ["Linodes", "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",
+ "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.5",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}], "page": 1, "pages": 1, "results": 31}'
@@ -310,7 +272,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 05 Nov 2024 21:39:42 GMT
+ - Thu, 05 Dec 2024 21:06:58 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -329,14 +291,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "800"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-wf87l61a1wn5","firewall_id":1139616,"booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-rl13z8c16rj5","firewall_id":1301897,"booted":false}'
form: {}
headers:
Accept:
@@ -348,17 +310,17 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 66638331, "label": "go-test-ins-wo-disk-wf87l61a1wn5", "group":
+ body: '{"id": 68072662, "label": "go-test-ins-wo-disk-rl13z8c16rj5", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.104.207.123"], "ipv6": "1234::5678/128",
+ "type": "g6-nanode-1", "ipv4": ["170.187.238.129"], "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": "c37a9389a8780ce12d745d3f703cbee667a6278e", "has_user_data":
- false, "placement_group": null, "disk_encryption": "disabled", "lke_cluster_id":
- null, "capabilities": ["SMTP Enabled"]}'
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm",
+ "watchdog_enabled": true, "tags": [], "host_uuid": "68ed1ae16fddc44088b6b1064d9a8e03819cbe70",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": ["SMTP Enabled"]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -381,7 +343,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 05 Nov 2024 21:39:42 GMT
+ - Thu, 05 Dec 2024 21:06:59 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -399,14 +361,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "5"
+ - "8"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-161u4zjkgp44","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-a6r94i79sq8j","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -415,10 +377,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/66638331/configs
+ url: https://api.linode.com/v4beta/linode/instances/68072662/configs
method: POST
response:
- body: '{"id": 69954876, "label": "go-test-conf-161u4zjkgp44", "helpers": {"updatedb_disabled":
+ body: '{"id": 71416838, "label": "go-test-conf-a6r94i79sq8j", "helpers": {"updatedb_disabled":
true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
@@ -449,7 +411,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 05 Nov 2024 21:39:43 GMT
+ - Thu, 05 Dec 2024 21:06:59 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -466,7 +428,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "800"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -482,20 +444,20 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/66638331
+ url: https://api.linode.com/v4beta/linode/instances/68072662
method: GET
response:
- body: '{"id": 66638331, "label": "go-test-ins-wo-disk-wf87l61a1wn5", "group":
+ body: '{"id": 68072662, "label": "go-test-ins-wo-disk-rl13z8c16rj5", "group":
"", "status": "offline", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.104.207.123"], "ipv6": "1234::5678/128",
+ "type": "g6-nanode-1", "ipv4": ["170.187.238.129"], "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": "c37a9389a8780ce12d745d3f703cbee667a6278e", "has_user_data":
- false, "placement_group": null, "disk_encryption": "disabled", "lke_cluster_id":
- null, "capabilities": ["SMTP Enabled"]}'
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": "Scheduling", "window": "Scheduling"}, "last_successful": null}, "hypervisor":
+ "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "68ed1ae16fddc44088b6b1064d9a8e03819cbe70",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": ["SMTP Enabled"]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -518,7 +480,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 05 Nov 2024 21:39:58 GMT
+ - Thu, 05 Dec 2024 21:07:14 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -537,14 +499,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "800"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"label":"go-disk-test-euxo947983vx","size":2000,"image":"linode/debian9","root_pass":"uR3C''yk^919D/ZNGeU0hxbyw-h2N)''\\d4GbH=~736dAJ\\7T)+1i7yFl32#7V~?T,","filesystem":"ext4"}'
+ body: '{"label":"go-disk-test-n2w70m14hnx5","size":2000,"image":"linode/debian10","root_pass":",0Et/2/]6C\u003c1y/\u0026f2XZ2VwQ4r7Czq08A0Nm0~]BnjIlW0bv=~1aR@p*49Hr''-M.A","filesystem":"ext4"}'
form: {}
headers:
Accept:
@@ -553,12 +515,12 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/66638331/disks
+ url: https://api.linode.com/v4beta/linode/instances/68072662/disks
method: POST
response:
- body: '{"id": 130183972, "status": "not ready", "label": "go-disk-test-euxo947983vx",
+ body: '{"id": 132854760, "status": "not ready", "label": "go-disk-test-n2w70m14hnx5",
"created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "filesystem":
- "ext4", "size": 2000, "disk_encryption": "disabled"}'
+ "ext4", "size": 2000, "disk_encryption": "enabled"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -577,13 +539,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "213"
+ - "212"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Tue, 05 Nov 2024 21:39:58 GMT
+ - Thu, 05 Dec 2024 21:07:15 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -600,7 +562,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "800"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -616,20 +578,20 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/66638331
+ url: https://api.linode.com/v4beta/linode/instances/68072662
method: GET
response:
- body: '{"id": 66638331, "label": "go-test-ins-wo-disk-wf87l61a1wn5", "group":
+ body: '{"id": 68072662, "label": "go-test-ins-wo-disk-rl13z8c16rj5", "group":
"", "status": "offline", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.104.207.123"], "ipv6": "1234::5678/128",
+ "type": "g6-nanode-1", "ipv4": ["170.187.238.129"], "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": "c37a9389a8780ce12d745d3f703cbee667a6278e", "has_user_data":
- false, "placement_group": null, "disk_encryption": "disabled", "lke_cluster_id":
- null, "capabilities": ["SMTP Enabled"]}'
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": "Scheduling", "window": "Scheduling"}, "last_successful": null}, "hypervisor":
+ "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "68ed1ae16fddc44088b6b1064d9a8e03819cbe70",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": ["SMTP Enabled"]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -652,7 +614,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 05 Nov 2024 21:40:14 GMT
+ - Thu, 05 Dec 2024 21:07:31 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -671,7 +633,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "800"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -687,12 +649,12 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/66638331/disks?page=1
+ url: https://api.linode.com/v4beta/linode/instances/68072662/disks?page=1
method: GET
response:
- body: '{"data": [{"id": 130183972, "status": "ready", "label": "go-disk-test-euxo947983vx",
+ body: '{"data": [{"id": 132854760, "status": "ready", "label": "go-disk-test-n2w70m14hnx5",
"created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "filesystem":
- "ext4", "size": 2000, "disk_encryption": "disabled"}], "page": 1, "pages": 1,
+ "ext4", "size": 2000, "disk_encryption": "enabled"}], "page": 1, "pages": 1,
"results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -712,13 +674,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "258"
+ - "257"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Tue, 05 Nov 2024 21:40:29 GMT
+ - Thu, 05 Dec 2024 21:07:46 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -736,7 +698,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "800"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -752,12 +714,12 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/66638331/disks/130183972/clone
+ url: https://api.linode.com/v4beta/linode/instances/68072662/disks/132854760/clone
method: POST
response:
- body: '{"id": 130184040, "status": "ready", "label": "Copy of go-disk-test-euxo947983vx",
+ body: '{"id": 132854789, "status": "ready", "label": "Copy of go-disk-test-n2w70m14hnx5",
"created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "filesystem":
- "ext4", "size": 2000, "disk_encryption": "disabled"}'
+ "ext4", "size": 2000, "disk_encryption": "enabled"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -776,13 +738,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "217"
+ - "216"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Tue, 05 Nov 2024 21:40:29 GMT
+ - Thu, 05 Dec 2024 21:07:46 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -799,7 +761,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "800"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -815,7 +777,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/66638331
+ url: https://api.linode.com/v4beta/linode/instances/68072662
method: DELETE
response:
body: '{}'
@@ -843,7 +805,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 05 Nov 2024 21:40:31 GMT
+ - Thu, 05 Dec 2024 21:07:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -860,7 +822,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "800"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
diff --git a/test/integration/fixtures/TestInstance_Disk_ResetPassword.yaml b/test/integration/fixtures/TestInstance_Disk_ResetPassword.yaml
index 95c449ecb..d8ad4ee80 100644
--- a/test/integration/fixtures/TestInstance_Disk_ResetPassword.yaml
+++ b/test/integration/fixtures/TestInstance_Disk_ResetPassword.yaml
@@ -15,262 +15,241 @@ interactions:
method: GET
response:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.34.5,172.105.35.5,172.105.36.5,172.105.37.5,172.105.38.5,172.105.39.5,172.105.40.5,172.105.41.5,172.105.42.5,172.105.43.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.0.5,172.105.3.5,172.105.4.5,172.105.5.5,172.105.6.5,172.105.7.5,172.105.8.5,172.105.9.5,172.105.10.5,172.105.11.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.166.5,172.105.169.5,172.105.168.5,172.105.172.5,172.105.162.5,172.105.170.5,172.105.167.5,172.105.171.5,172.105.181.5,172.105.161.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-iad", "label": "Washington, DC", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
"Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "139.144.192.62,139.144.192.60,139.144.192.61,139.144.192.53,139.144.192.54,139.144.192.67,139.144.192.69,139.144.192.66,139.144.192.52,139.144.192.68",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
- "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status":
- "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13,
- 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
- "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17,172.232.0.16,172.232.0.21,172.232.0.13,172.232.0.22,172.232.0.9,172.232.0.19,172.232.0.20,172.232.0.15,172.232.0.18",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "fr-par", "label": "Paris, FR", "country":
+ "fr", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.32.21,172.232.32.23,172.232.32.17,172.232.32.18,172.232.32.16,172.232.32.22,172.232.32.20,172.232.32.14,172.232.32.11,172.232.32.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-sea", "label": "Seattle, WA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,172.232.160.21,172.232.160.17,172.232.160.15,172.232.160.18,172.232.160.8,172.232.160.12,172.232.160.11,172.232.160.14,172.232.160.16",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,172.233.0.9,172.233.0.7,172.233.0.12,172.233.0.5,172.233.0.13,172.233.0.10,172.233.0.6,172.233.0.8,172.233.0.11",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
- "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22,
- 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21,
- 172.232.128.27", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25,
- 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18,
- 172.233.111.9", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20,
- 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
- 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
- "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
- 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
- "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32,
- 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
- "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
- 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
- "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
- 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
- "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5,
- 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6":
- "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5,
- 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5,
- 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5,
- 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678,
+ "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.33.36,172.233.33.38,172.233.33.35,172.233.33.39,172.233.33.34,172.233.33.33,172.233.33.31,172.233.33.30,172.233.33.37,172.233.33.32",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.232.128.24,172.232.128.26,172.232.128.20,172.232.128.22,172.232.128.25,172.232.128.19,172.232.128.23,172.232.128.18,172.232.128.21,172.232.128.27",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,172.233.111.17,172.233.111.21,172.233.111.25,172.233.111.19,172.233.111.12,172.233.111.26,172.233.111.16,172.233.111.18,172.233.111.9",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.232.96.17,172.232.96.26,172.232.96.19,172.232.96.20,172.232.96.25,172.232.96.21,172.232.96.18,172.232.96.22,172.232.96.23,172.232.96.24",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.64.44,172.233.64.43,172.233.64.37,172.233.64.40,172.233.64.46,172.233.64.41,172.233.64.39,172.233.64.42,172.233.64.45,172.233.64.38",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "it-mil", "label": "Milan, IT", "country":
+ "it", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.192.19,172.232.192.18,172.232.192.16,172.232.192.20,172.232.192.24,172.232.192.21,172.232.192.22,172.232.192.17,172.232.192.15,172.232.192.23",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-mia", "label": "Miami, FL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.233.160.34,172.233.160.27,172.233.160.30,172.233.160.29,172.233.160.32,172.233.160.28,172.233.160.33,172.233.160.26,172.233.160.25,172.233.160.31",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "id-cgk", "label": "Jakarta, ID", "country":
+ "id", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.224.23,172.232.224.32,172.232.224.26,172.232.224.27,172.232.224.21,172.232.224.24,172.232.224.22,172.232.224.20,172.232.224.31,172.232.224.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-lax", "label": "Los Angeles, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.128.45,172.233.128.38,172.233.128.53,172.233.128.37,172.233.128.34,172.233.128.36,172.233.128.33,172.233.128.39,172.233.128.43,172.233.128.44",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "gb-lon", "label": "London 2, UK", "country":
+ "gb", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country":
+ "au", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-bom-2", "label": "Mumbai 2, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "de-fra-2", "label": "Frankfurt 2, DE", "country":
+ "de", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.203.9,172.236.203.16,172.236.203.19,172.236.203.15,172.236.203.17,172.236.203.11,172.236.203.18,172.236.203.14,172.236.203.13,172.236.203.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "sg-sin-2", "label": "Singapore 2, SG", "country":
+ "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-tyo-3", "label": "Tokyo 3, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "172.237.4.15,172.237.4.19,172.237.4.17,172.237.4.21,172.237.4.16,172.237.4.18,172.237.4.23,172.237.4.24,172.237.4.20,172.237.4.14",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-central", "label": "Dallas, TX", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5,72.14.188.5,173.255.199.5,66.228.53.5,96.126.122.5,96.126.124.5,96.126.127.5,198.58.107.5,198.58.111.5,23.239.24.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-west", "label": "Fremont, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5,
+ 173.230.147.5, 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5,
+ 173.255.244.5, 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
- "Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast",
+ "label": "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "status":
- "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5, 50.116.58.5,
- 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4, 207.192.69.5",
- "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "eu-west", "label": "London, UK", "country": "gb", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5,
+ 96.126.106.5, 50.116.53.5, 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5,
+ 97.107.133.4, 207.192.69.4, 207.192.69.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west",
+ "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
"status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5,
176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20,
109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country":
- "sg", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "139.162.11.5, 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5,
- 139.162.21.5, 139.162.27.5, 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6":
- "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
- Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
- "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
- 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
- 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
- "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5,
- 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6":
- "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}], "page": 1, "pages": 1, "results": 27}'
+ "sg", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,139.162.131.5,139.162.132.5,139.162.133.5,139.162.134.5,139.162.135.5,139.162.136.5,139.162.137.5,139.162.138.5,139.162.139.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-northeast", "label": "Tokyo 2, JP", "country":
+ "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}], "page": 1, "pages": 1, "results": 31}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -282,6 +261,8 @@ interactions:
- '*'
Access-Control-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 +272,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 05 Jul 2024 20:47:51 GMT
+ - Thu, 05 Dec 2024 21:09:01 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -310,14 +291,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-9w1vel069mf0","firewall_id":634496,"booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-8754l5lw0kii","firewall_id":1301901,"booted":false}'
form: {}
headers:
Accept:
@@ -329,16 +310,17 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 61085422, "label": "go-test-ins-wo-disk-9w1vel069mf0", "group":
+ body: '{"id": 68072701, "label": "go-test-ins-wo-disk-8754l5lw0kii", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.61.101"], "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":
- "f938c3729d62778abc4a62c7f6abecae18bc8c37", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["170.187.238.139"], "ipv6": "1234::5678/128",
+ "image": null, "region": "ap-west", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm",
+ "watchdog_enabled": true, "tags": [], "host_uuid": "da930e82eeecd0e42121a79be169fb0cd193bd7d",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": ["SMTP Enabled"]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -350,24 +332,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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:
- - Fri, 05 Jul 2024 20:47:52 GMT
+ - Thu, 05 Dec 2024 21:09:02 GMT
Pragma:
- no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- Authorization, X-Filter
+ - Accept-Encoding
X-Accepted-Oauth-Scopes:
- linodes:read_write
X-Content-Type-Options:
@@ -378,14 +361,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "10"
+ - "8"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-vc49sb63y38l","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-8fz1m7k280js","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -394,10 +377,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61085422/configs
+ url: https://api.linode.com/v4beta/linode/instances/68072701/configs
method: POST
response:
- body: '{"id": 64299430, "label": "go-test-conf-vc49sb63y38l", "helpers": {"updatedb_disabled":
+ body: '{"id": 71416880, "label": "go-test-conf-8fz1m7k280js", "helpers": {"updatedb_disabled":
true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
@@ -415,6 +398,8 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -426,7 +411,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 05 Jul 2024 20:47:52 GMT
+ - Thu, 05 Dec 2024 21:09:02 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -443,7 +428,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -459,19 +444,91 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61085422
+ url: https://api.linode.com/v4beta/linode/instances/68072701
method: GET
response:
- body: '{"id": 61085422, "label": "go-test-ins-wo-disk-9w1vel069mf0", "group":
+ body: '{"id": 68072701, "label": "go-test-ins-wo-disk-8754l5lw0kii", "group":
+ "", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "type": "g6-nanode-1", "ipv4": ["170.187.238.139"], "ipv6": "1234::5678/128",
+ "image": null, "region": "ap-west", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": "Scheduling", "window": "Scheduling"}, "last_successful": null}, "hypervisor":
+ "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "da930e82eeecd0e42121a79be169fb0cd193bd7d",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": ["SMTP Enabled"]}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Thu, 05 Dec 2024 21:09:17 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ - Accept-Encoding
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances/68072701
+ method: GET
+ response:
+ body: '{"id": 68072701, "label": "go-test-ins-wo-disk-8754l5lw0kii", "group":
"", "status": "offline", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.61.101"], "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": "f938c3729d62778abc4a62c7f6abecae18bc8c37", "has_user_data":
- false, "placement_group": null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["170.187.238.139"], "ipv6": "1234::5678/128",
+ "image": null, "region": "ap-west", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": "Scheduling", "window": "Scheduling"}, "last_successful": null}, "hypervisor":
+ "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "da930e82eeecd0e42121a79be169fb0cd193bd7d",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": ["SMTP Enabled"]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -483,18 +540,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:
- - "797"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 05 Jul 2024 20:48:07 GMT
+ - Thu, 05 Dec 2024 21:09:32 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -502,6 +559,7 @@ interactions:
Vary:
- Authorization, X-Filter
- Authorization, X-Filter
+ - Accept-Encoding
X-Accepted-Oauth-Scopes:
- linodes:read_only
X-Content-Type-Options:
@@ -512,14 +570,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"label":"go-disk-test-d097j3dmu27f","size":2000,"image":"linode/debian9","root_pass":"~''0{!75*V;?i7z438ernI15k2(Hz{9FPvrEpai5D^C*l38VhD(r?G1[IH.LZ4!Vg","filesystem":"ext4"}'
+ body: '{"label":"go-disk-test-3y0g1972ezit","size":2000,"image":"linode/debian10","root_pass":";22o/6yjp8nuI9H8\u003e3\\p9''A-7D]WHYD(a7pSR3u,]$2}\u0026D5wikHyom9W1~,KRK:5","filesystem":"ext4"}'
form: {}
headers:
Accept:
@@ -528,12 +586,12 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61085422/disks
+ url: https://api.linode.com/v4beta/linode/instances/68072701/disks
method: POST
response:
- body: '{"id": 120070608, "status": "not ready", "label": "go-disk-test-d097j3dmu27f",
+ body: '{"id": 132854847, "status": "not ready", "label": "go-disk-test-3y0g1972ezit",
"created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "filesystem":
- "ext4", "size": 2000}'
+ "ext4", "size": 2000, "disk_encryption": "enabled"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -545,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:
- - "182"
+ - "212"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 05 Jul 2024 20:48:08 GMT
+ - Thu, 05 Dec 2024 21:09:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -573,7 +633,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -589,19 +649,20 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61085422
+ url: https://api.linode.com/v4beta/linode/instances/68072701
method: GET
response:
- body: '{"id": 61085422, "label": "go-test-ins-wo-disk-9w1vel069mf0", "group":
+ body: '{"id": 68072701, "label": "go-test-ins-wo-disk-8754l5lw0kii", "group":
"", "status": "offline", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.61.101"], "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": "f938c3729d62778abc4a62c7f6abecae18bc8c37", "has_user_data":
- false, "placement_group": null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["170.187.238.139"], "ipv6": "1234::5678/128",
+ "image": null, "region": "ap-west", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": "Scheduling", "window": "Scheduling"}, "last_successful": null}, "hypervisor":
+ "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "da930e82eeecd0e42121a79be169fb0cd193bd7d",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": ["SMTP Enabled"]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -613,18 +674,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:
- - "797"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 05 Jul 2024 20:48:23 GMT
+ - Thu, 05 Dec 2024 21:09:49 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -632,6 +693,7 @@ interactions:
Vary:
- Authorization, X-Filter
- Authorization, X-Filter
+ - Accept-Encoding
X-Accepted-Oauth-Scopes:
- linodes:read_only
X-Content-Type-Options:
@@ -642,7 +704,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -658,12 +720,13 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61085422/disks?page=1
+ url: https://api.linode.com/v4beta/linode/instances/68072701/disks?page=1
method: GET
response:
- body: '{"data": [{"id": 120070608, "status": "ready", "label": "go-disk-test-d097j3dmu27f",
+ body: '{"data": [{"id": 132854847, "status": "ready", "label": "go-disk-test-3y0g1972ezit",
"created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "filesystem":
- "ext4", "size": 2000}], "page": 1, "pages": 1, "results": 1}'
+ "ext4", "size": 2000, "disk_encryption": "enabled"}], "page": 1, "pages": 1,
+ "results": 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -675,18 +738,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "227"
+ - "257"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 05 Jul 2024 20:48:38 GMT
+ - Thu, 05 Dec 2024 21:10:04 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -704,7 +769,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -720,7 +785,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61085422/disks/120070608/password
+ url: https://api.linode.com/v4beta/linode/instances/68072701/disks/132854847/password
method: POST
response:
body: '{}'
@@ -735,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:
@@ -746,7 +813,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 05 Jul 2024 20:48:38 GMT
+ - Thu, 05 Dec 2024 21:10:04 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -763,7 +830,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -779,7 +846,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61085422
+ url: https://api.linode.com/v4beta/linode/instances/68072701
method: DELETE
response:
body: '{}'
@@ -794,6 +861,8 @@ interactions:
- '*'
Access-Control-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 +874,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 05 Jul 2024 20:48:38 GMT
+ - Thu, 05 Dec 2024 21:10:08 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -822,7 +891,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
diff --git a/test/integration/fixtures/TestInstance_Get.yaml b/test/integration/fixtures/TestInstance_Get.yaml
index c03acd88e..e6d0d6365 100644
--- a/test/integration/fixtures/TestInstance_Get.yaml
+++ b/test/integration/fixtures/TestInstance_Get.yaml
@@ -15,243 +15,262 @@ interactions:
method: GET
response:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.34.5,172.105.35.5,172.105.36.5,172.105.37.5,172.105.38.5,172.105.39.5,172.105.40.5,172.105.41.5,172.105.42.5,172.105.43.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.0.5,172.105.3.5,172.105.4.5,172.105.5.5,172.105.6.5,172.105.7.5,172.105.8.5,172.105.9.5,172.105.10.5,172.105.11.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.166.5,172.105.169.5,172.105.168.5,172.105.172.5,172.105.162.5,172.105.170.5,172.105.167.5,172.105.171.5,172.105.181.5,172.105.161.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-iad", "label": "Washington, DC", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
"Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60,
- 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69,
- 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "139.144.192.62,139.144.192.60,139.144.192.61,139.144.192.53,139.144.192.54,139.144.192.67,139.144.192.69,139.144.192.66,139.144.192.52,139.144.192.68",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
- "Managed Databases", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
- 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
- "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
- "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17,172.232.0.16,172.232.0.21,172.232.0.13,172.232.0.22,172.232.0.9,172.232.0.19,172.232.0.20,172.232.0.15,172.232.0.18",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "fr-par", "label": "Paris, FR", "country":
+ "fr", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.32.21,172.232.32.23,172.232.32.17,172.232.32.18,172.232.32.16,172.232.32.22,172.232.32.20,172.232.32.14,172.232.32.11,172.232.32.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-sea", "label": "Seattle, WA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,172.232.160.21,172.232.160.17,172.232.160.15,172.232.160.18,172.232.160.8,172.232.160.12,172.232.160.11,172.232.160.14,172.232.160.16",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.233.0.4,172.233.0.9,172.233.0.7,172.233.0.12,172.233.0.5,172.233.0.13,172.233.0.10,172.233.0.6,172.233.0.8,172.233.0.11",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
- "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22,
- 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21,
- 172.232.128.27", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25,
- 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18,
- 172.233.111.9", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20,
- 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
- 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
- "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
- 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
- "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32,
- 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
- "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.33.36,172.233.33.38,172.233.33.35,172.233.33.39,172.233.33.34,172.233.33.33,172.233.33.31,172.233.33.30,172.233.33.37,172.233.33.32",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.232.128.24,172.232.128.26,172.232.128.20,172.232.128.22,172.232.128.25,172.232.128.19,172.232.128.23,172.232.128.18,172.232.128.21,172.232.128.27",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
- 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
- "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
+ "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.233.111.6,172.233.111.17,172.233.111.21,172.233.111.25,172.233.111.19,172.233.111.12,172.233.111.26,172.233.111.16,172.233.111.18,172.233.111.9",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.232.96.17,172.232.96.26,172.232.96.19,172.232.96.20,172.232.96.25,172.232.96.21,172.232.96.18,172.232.96.22,172.232.96.23,172.232.96.24",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.64.44,172.233.64.43,172.233.64.37,172.233.64.40,172.233.64.46,172.233.64.41,172.233.64.39,172.233.64.42,172.233.64.45,172.233.64.38",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "it-mil", "label": "Milan, IT", "country":
+ "it", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
- 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
- "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5,
- 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6":
- "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
+ "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.232.192.19,172.232.192.18,172.232.192.16,172.232.192.20,172.232.192.24,172.232.192.21,172.232.192.22,172.232.192.17,172.232.192.15,172.232.192.23",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-mia", "label": "Miami, FL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.160.34,172.233.160.27,172.233.160.30,172.233.160.29,172.233.160.32,172.233.160.28,172.233.160.33,172.233.160.26,172.233.160.25,172.233.160.31",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "id-cgk", "label": "Jakarta, ID", "country":
+ "id", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.224.23,172.232.224.32,172.232.224.26,172.232.224.27,172.232.224.21,172.232.224.24,172.232.224.22,172.232.224.20,172.232.224.31,172.232.224.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-lax", "label": "Los Angeles, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.128.45,172.233.128.38,172.233.128.53,172.233.128.37,172.233.128.34,172.233.128.36,172.233.128.33,172.233.128.39,172.233.128.43,172.233.128.44",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "nz-akl-1", "label": "Auckland, NZ", "country":
+ "nz", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata", "Distributed
+ Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-den-1",
+ "label": "Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud Firewall",
+ "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4":
+ "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "de-ham-1", "label": "Hamburg, DE",
+ "country": "de", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata",
+ "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-1",
+ "label": "Marseille, FR", "country": "fr", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "za-jnb-1", "label": "Johannesburg,
+ ZA", "country": "za", "capabilities": ["Linodes", "Cloud Firewall", "Vlans",
+ "Metadata", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-1",
+ "label": "Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "mx-qro-1", "label": "Quer\u00e9taro,
+ MX", "country": "mx", "capabilities": ["Linodes", "Cloud Firewall", "Vlans",
+ "Metadata", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-1",
+ "label": "Houston, TX", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "cl-scl-1", "label": "Santiago, CL",
+ "country": "cl", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata",
+ "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "gb-lon",
+ "label": "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Disk
+ Encryption", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country":
+ "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-bom-2", "label": "Mumbai 2, IN", "country":
+ "in", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "sg-sin-2", "label": "Singapore 2, SG", "country":
+ "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-central", "label": "Dallas, TX", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
"core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
- ["Linodes", "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", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, 173.255.212.5,
+ 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, 74.207.242.5",
"ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 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",
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country": "us", "capabilities":
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ", "country":
+ "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "139.162.11.5, 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5,
- 139.162.21.5, 139.162.27.5, 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6":
- "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
- Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
- "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,
- 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5,
- 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678,
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Metadata",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "178.79.182.5,
+ 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5,
+ 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast",
- "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5,
- 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6":
- "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}], "page": 1, "pages": 1, "results": 25}'
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.130.5,139.162.131.5,139.162.132.5,139.162.133.5,139.162.134.5,139.162.135.5,139.162.136.5,139.162.137.5,139.162.138.5,139.162.139.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-northeast", "label": "Tokyo 2, JP", "country":
+ "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}], "page": 1, "pages": 1, "results": 38}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -263,6 +282,8 @@ interactions:
- '*'
Access-Control-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 +293,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 31 May 2024 17:43:45 GMT
+ - Thu, 14 Nov 2024 18:32:53 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -294,14 +315,14 @@ interactions:
longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-ev767x8w5vl4","firewall_id":501419,"booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-8b1y24dj5j2m","firewall_id":1192830,"booted":false}'
form: {}
headers:
Accept:
@@ -313,16 +334,17 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 59542926, "label": "go-test-ins-wo-disk-ev767x8w5vl4", "group":
+ body: '{"id": 67099499, "label": "go-test-ins-wo-disk-8b1y24dj5j2m", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.42.155"], "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":
- "6c894953633c462841b5472b8531a0bcef51c1fa", "has_user_data": false, "placement_group":
- null}'
+ "type": "g6-nanode-1", "ipv4": ["192.46.214.108"], "ipv6": "1234::5678/128",
+ "image": null, "region": "ap-west", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm",
+ "watchdog_enabled": true, "tags": [], "host_uuid": "67a840ecf39180ca8e755980bb51acd5ec975c17",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": ["SMTP Enabled"]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -334,24 +356,25 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
- Content-Length:
- - "762"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 31 May 2024 17:43:45 GMT
+ - Thu, 14 Nov 2024 18:32:54 GMT
Pragma:
- no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- Authorization, X-Filter
+ - Accept-Encoding
X-Accepted-Oauth-Scopes:
- linodes:read_write
X-Content-Type-Options:
@@ -365,14 +388,14 @@ interactions:
longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- - "10"
+ - "8"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-023m85g0dcnj","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-0g82q8ec7q5z","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -381,11 +404,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/59542926/configs
+ url: https://api.linode.com/v4beta/linode/instances/67099499/configs
method: POST
response:
- body: '{"id": 62729557, "label": "go-test-conf-023m85g0dcnj", "helpers": {"updatedb_disabled":
- true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
+ body: '{"id": 70423567, "label": "go-test-conf-0g82q8ec7q5z", "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,
@@ -402,18 +425,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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, 31 May 2024 17:43:45 GMT
+ - Thu, 14 Nov 2024 18:32:54 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -433,7 +458,7 @@ interactions:
longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -449,19 +474,20 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/59542926
+ url: https://api.linode.com/v4beta/linode/instances/67099499
method: GET
response:
- body: '{"id": 59542926, "label": "go-test-ins-wo-disk-ev767x8w5vl4", "group":
+ body: '{"id": 67099499, "label": "go-test-ins-wo-disk-8b1y24dj5j2m", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.42.155"], "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": "6c894953633c462841b5472b8531a0bcef51c1fa", "has_user_data":
- false, "placement_group": null}'
+ "type": "g6-nanode-1", "ipv4": ["192.46.214.108"], "ipv6": "1234::5678/128",
+ "image": null, "region": "ap-west", "site_type": "core", "specs": {"disk": 25600,
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": "Scheduling", "window": "Scheduling"}, "last_successful": null}, "hypervisor":
+ "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "67a840ecf39180ca8e755980bb51acd5ec975c17",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": ["SMTP Enabled"]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -473,18 +499,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:
- - "778"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Fri, 31 May 2024 17:43:45 GMT
+ - Thu, 14 Nov 2024 18:32:54 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -492,6 +518,7 @@ interactions:
Vary:
- Authorization, X-Filter
- Authorization, X-Filter
+ - Accept-Encoding
X-Accepted-Oauth-Scopes:
- linodes:read_only
X-Content-Type-Options:
@@ -505,7 +532,7 @@ interactions:
longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -521,7 +548,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/59542926
+ url: https://api.linode.com/v4beta/linode/instances/67099499
method: DELETE
response:
body: '{}'
@@ -536,6 +563,8 @@ interactions:
- '*'
Access-Control-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 +576,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Fri, 31 May 2024 17:43:46 GMT
+ - Thu, 14 Nov 2024 18:32:56 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -567,7 +596,7 @@ interactions:
longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
diff --git a/test/integration/fixtures/TestInstance_GetMonthlyTransfer.yaml b/test/integration/fixtures/TestInstance_GetMonthlyTransfer.yaml
index c0c208112..d252d03e7 100644
--- a/test/integration/fixtures/TestInstance_GetMonthlyTransfer.yaml
+++ b/test/integration/fixtures/TestInstance_GetMonthlyTransfer.yaml
@@ -15,276 +15,237 @@ interactions:
method: GET
response:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,
- 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5,
- 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.34.5,172.105.35.5,172.105.36.5,172.105.37.5,172.105.38.5,172.105.39.5,172.105.40.5,172.105.41.5,172.105.42.5,172.105.43.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
- "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
- Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
- "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5,
- 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
+ "ca", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.0.5,172.105.3.5,172.105.4.5,172.105.5.5,172.105.6.5,172.105.7.5,172.105.8.5,172.105.9.5,172.105.10.5,172.105.11.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
- "au", "capabilities": ["Linodes", "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"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label":
- "Washington, DC", "country": "us", "capabilities": ["Linodes", "Block Storage
- Encryption", "Backups", "NodeBalancers", "Block Storage", "Object Storage",
- "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
- "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62,
- 139.144.192.60, 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67,
- 139.144.192.69, 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
+ "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.166.5,172.105.169.5,172.105.168.5,172.105.172.5,172.105.162.5,172.105.170.5,172.105.167.5,172.105.171.5,172.105.181.5,172.105.161.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-iad", "label": "Washington, DC", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "139.144.192.62,139.144.192.60,139.144.192.61,139.144.192.53,139.144.192.54,139.144.192.67,139.144.192.69,139.144.192.66,139.144.192.52,139.144.192.68",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
- "us", "capabilities": ["Linodes", "Block Storage Encryption", "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": null, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "fr-par", "label": "Paris, FR", "country": "fr", "capabilities":
- ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
- "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Block Storage Encryption",
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17,172.232.0.16,172.232.0.21,172.232.0.13,172.232.0.22,172.232.0.9,172.232.0.19,172.232.0.20,172.232.0.15,172.232.0.18",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "fr-par", "label": "Paris, FR", "country":
+ "fr", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.32.21,172.232.32.23,172.232.32.17,172.232.32.18,172.232.32.16,172.232.32.22,172.232.32.20,172.232.32.14,172.232.32.11,172.232.32.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-sea", "label": "Seattle, WA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
"Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
"Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
- "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19, 172.232.160.21,
- 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8, 172.232.160.12,
- 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,172.232.160.21,172.232.160.17,172.232.160.15,172.232.160.18,172.232.160.8,172.232.160.12,172.232.160.11,172.232.160.14,172.232.160.16",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
- "br", "capabilities": ["Linodes", "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"},
+ "br", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,172.233.0.9,172.233.0.7,172.233.0.12,172.233.0.5,172.233.0.13,172.233.0.10,172.233.0.6,172.233.0.8,172.233.0.11",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
- "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
- "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38, 172.233.33.35,
- 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30, 172.233.33.37,
- 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities":
- ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed
- Databases", "Metadata", "Premium Plans", "Placement Group"], "status": "ok",
- "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22,
- 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21,
- 172.232.128.27", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities":
- ["Linodes", "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",
+ "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.33.36,172.233.33.38,172.233.33.35,172.233.33.39,172.233.33.34,172.233.33.33,172.233.33.31,172.233.33.30,172.233.33.37,172.233.33.32",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.232.128.24,172.232.128.26,172.232.128.20,172.232.128.22,172.232.128.25,172.232.128.19,172.232.128.23,172.232.128.18,172.232.128.21,172.232.128.27",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,172.233.111.17,172.233.111.21,172.233.111.25,172.233.111.19,172.233.111.12,172.233.111.26,172.233.111.16,172.233.111.18,172.233.111.9",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
- "in", "capabilities": ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"],
- "status": "ok", "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19,
- 172.232.96.20, 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23,
- 172.232.96.24", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country": "jp", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
- Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
- "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
- 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
- "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
- 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
- "Miami, FL", "country": "us", "capabilities": ["Linodes", "Block Storage Encryption",
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
"Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
"Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
- Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.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"},
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.232.96.17,172.232.96.26,172.232.96.19,172.232.96.20,172.232.96.25,172.232.96.21,172.232.96.18,172.232.96.22,172.232.96.23,172.232.96.24",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.64.44,172.233.64.43,172.233.64.37,172.233.64.40,172.233.64.46,172.233.64.41,172.233.64.39,172.233.64.42,172.233.64.45,172.233.64.38",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "it-mil", "label": "Milan, IT", "country":
+ "it", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.192.19,172.232.192.18,172.232.192.16,172.232.192.20,172.232.192.24,172.232.192.21,172.232.192.22,172.232.192.17,172.232.192.15,172.232.192.23",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-mia", "label": "Miami, FL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.233.160.34,172.233.160.27,172.233.160.30,172.233.160.29,172.233.160.32,172.233.160.28,172.233.160.33,172.233.160.26,172.233.160.25,172.233.160.31",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "id-cgk", "label": "Jakarta, ID", "country":
- "id", "capabilities": ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
- 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
- "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Block Storage
- Encryption", "Backups", "NodeBalancers", "Block Storage", "Object Storage",
- "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
- "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.128.45, 172.233.128.38,
- 172.233.128.53, 172.233.128.37, 172.233.128.34, 172.233.128.36, 172.233.128.33,
- 172.233.128.39, 172.233.128.43, 172.233.128.44", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
+ "id", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.224.23,172.232.224.32,172.232.224.26,172.232.224.27,172.232.224.21,172.232.224.24,172.232.224.22,172.232.224.20,172.232.224.31,172.232.224.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-lax", "label": "Los Angeles, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.128.45,172.233.128.38,172.233.128.53,172.233.128.37,172.233.128.34,172.233.128.36,172.233.128.33,172.233.128.39,172.233.128.43,172.233.128.44",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "gb-lon", "label": "London 2, UK", "country":
- "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
- "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48",
+ "gb", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country":
- "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
- "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34",
+ "au", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "in-bom-2", "label": "Mumbai 2, IN", "country":
- "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"],
- "status": "ok", "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28",
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "de-fra-2", "label": "Frankfurt 2, DE", "country":
- "de", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.236.203.9,172.236.203.16,172.236.203.19,172.236.203.15,172.236.203.17,172.236.203.11,172.236.203.18,172.236.203.14,172.236.203.13,172.236.203.12",
+ "de", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.203.9,172.236.203.16,172.236.203.19,172.236.203.15,172.236.203.17,172.236.203.11,172.236.203.18,172.236.203.14,172.236.203.13,172.236.203.12",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "sg-sin-2", "label": "Singapore 2, SG", "country":
- "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers",
- "Block Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs",
- "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47",
+ "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "jp-tyo-3", "label": "Tokyo 3, JP", "country":
- "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
- "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.237.4.15,172.237.4.19,172.237.4.17,172.237.4.21,172.237.4.16,172.237.4.18,172.237.4.23,172.237.4.24,172.237.4.20,172.237.4.14",
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "172.237.4.15,172.237.4.19,172.237.4.17,172.237.4.21,172.237.4.16,172.237.4.18,172.237.4.23,172.237.4.24,172.237.4.20,172.237.4.14",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "us-central", "label": "Dallas, TX", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
- Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4":
- "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5, 96.126.124.5,
- 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", "ipv6": "1234::5678,
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5,72.14.188.5,173.255.199.5,66.228.53.5,96.126.122.5,96.126.124.5,96.126.127.5,198.58.107.5,198.58.111.5,23.239.24.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-west", "label": "Fremont, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5,
+ 173.230.147.5, 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5,
+ 173.255.244.5, 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-west",
- "label": "Fremont, CA", "country": "us", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
- "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, 173.255.212.5,
- 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, 74.207.242.5",
- "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
- Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
- "Managed Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.5",
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast",
+ "label": "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.5",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ", "country":
"us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata", "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", "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,
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Metadata",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "178.79.182.5,
+ 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5,
+ 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "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",
+ 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", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
"de", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
"Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "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",
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.130.5,139.162.131.5,139.162.132.5,139.162.133.5,139.162.134.5,139.162.135.5,139.162.136.5,139.162.137.5,139.162.138.5,139.162.139.5",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "ap-northeast", "label": "Tokyo 2, JP", "country":
- "jp", "capabilities": ["Linodes", "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",
+ "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.5",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
"placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}], "page": 1, "pages": 1, "results": 31}'
@@ -310,7 +271,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 05 Nov 2024 14:41:15 GMT
+ - Mon, 02 Dec 2024 14:43:50 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -329,14 +290,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "800"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-03at2019rkis","firewall_id":1136150,"booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-4pz63s64i8uq","firewall_id":1279742,"booted":false}'
form: {}
headers:
Accept:
@@ -348,17 +309,17 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 66615187, "label": "go-test-ins-wo-disk-03at2019rkis", "group":
+ body: '{"id": 67893544, "label": "go-test-ins-wo-disk-4pz63s64i8uq", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["192.46.213.46"], "ipv6": "1234::5678/128",
+ "type": "g6-nanode-1", "ipv4": ["192.46.213.173"], "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": "bb03aee31fa7539cfeeeaf2fd3ea5d5c9f4d8e68", "has_user_data":
- false, "placement_group": null, "disk_encryption": "disabled", "lke_cluster_id":
- null, "capabilities": ["SMTP Enabled"]}'
+ "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm",
+ "watchdog_enabled": true, "tags": [], "host_uuid": "3f56a3df540f1c07c07d1bcb6b10cbaab2b6fb0a",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": ["SMTP Enabled"]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -381,7 +342,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 05 Nov 2024 14:41:16 GMT
+ - Mon, 02 Dec 2024 14:43:50 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -399,14 +360,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "5"
+ - "8"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"label":"go-test-conf-9gl1xl346k8z","devices":{},"interfaces":null}'
+ body: '{"label":"go-test-conf-194m54f0ewrb","devices":{},"interfaces":null}'
form: {}
headers:
Accept:
@@ -415,10 +376,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/66615187/configs
+ url: https://api.linode.com/v4beta/linode/instances/67893544/configs
method: POST
response:
- body: '{"id": 69931649, "label": "go-test-conf-9gl1xl346k8z", "helpers": {"updatedb_disabled":
+ body: '{"id": 71234066, "label": "go-test-conf-194m54f0ewrb", "helpers": {"updatedb_disabled":
true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
@@ -449,7 +410,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 05 Nov 2024 14:41:16 GMT
+ - Mon, 02 Dec 2024 14:43:51 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -466,7 +427,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "800"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -482,7 +443,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/66615187/transfer/2024/11
+ url: https://api.linode.com/v4beta/linode/instances/67893544/transfer/2024/12
method: GET
response:
body: '{"bytes_in": 0, "bytes_out": 0, "bytes_total": 0}'
@@ -510,7 +471,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 05 Nov 2024 14:41:16 GMT
+ - Mon, 02 Dec 2024 14:43:51 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -528,7 +489,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "800"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -544,7 +505,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/66615187
+ url: https://api.linode.com/v4beta/linode/instances/67893544
method: DELETE
response:
body: '{}'
@@ -572,7 +533,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 05 Nov 2024 14:41:18 GMT
+ - Mon, 02 Dec 2024 14:43:53 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -589,7 +550,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "800"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
diff --git a/test/integration/fixtures/TestInstance_MigrateToPG.yaml b/test/integration/fixtures/TestInstance_MigrateToPG.yaml
new file mode 100644
index 000000000..930464202
--- /dev/null
+++ b/test/integration/fixtures/TestInstance_MigrateToPG.yaml
@@ -0,0 +1,1163 @@
+---
+version: 1
+interactions:
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/regions?page=1
+ method: GET
+ response:
+ body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.34.5,172.105.35.5,172.105.36.5,172.105.37.5,172.105.38.5,172.105.39.5,172.105.40.5,172.105.41.5,172.105.42.5,172.105.43.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.0.5,172.105.3.5,172.105.4.5,172.105.5.5,172.105.6.5,172.105.7.5,172.105.8.5,172.105.9.5,172.105.10.5,172.105.11.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.166.5,172.105.169.5,172.105.168.5,172.105.172.5,172.105.162.5,172.105.170.5,172.105.167.5,172.105.171.5,172.105.181.5,172.105.161.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-iad", "label": "Washington, DC", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "139.144.192.62,139.144.192.60,139.144.192.61,139.144.192.53,139.144.192.54,139.144.192.67,139.144.192.69,139.144.192.66,139.144.192.52,139.144.192.68",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17,172.232.0.16,172.232.0.21,172.232.0.13,172.232.0.22,172.232.0.9,172.232.0.19,172.232.0.20,172.232.0.15,172.232.0.18",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "fr-par", "label": "Paris, FR", "country":
+ "fr", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.32.21,172.232.32.23,172.232.32.17,172.232.32.18,172.232.32.16,172.232.32.22,172.232.32.20,172.232.32.14,172.232.32.11,172.232.32.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-sea", "label": "Seattle, WA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,172.232.160.21,172.232.160.17,172.232.160.15,172.232.160.18,172.232.160.8,172.232.160.12,172.232.160.11,172.232.160.14,172.232.160.16",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,172.233.0.9,172.233.0.7,172.233.0.12,172.233.0.5,172.233.0.13,172.233.0.10,172.233.0.6,172.233.0.8,172.233.0.11",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
+ "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.33.36,172.233.33.38,172.233.33.35,172.233.33.39,172.233.33.34,172.233.33.33,172.233.33.31,172.233.33.30,172.233.33.37,172.233.33.32",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.232.128.24,172.232.128.26,172.232.128.20,172.232.128.22,172.232.128.25,172.232.128.19,172.232.128.23,172.232.128.18,172.232.128.21,172.232.128.27",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,172.233.111.17,172.233.111.21,172.233.111.25,172.233.111.19,172.233.111.12,172.233.111.26,172.233.111.16,172.233.111.18,172.233.111.9",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.232.96.17,172.232.96.26,172.232.96.19,172.232.96.20,172.232.96.25,172.232.96.21,172.232.96.18,172.232.96.22,172.232.96.23,172.232.96.24",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.64.44,172.233.64.43,172.233.64.37,172.233.64.40,172.233.64.46,172.233.64.41,172.233.64.39,172.233.64.42,172.233.64.45,172.233.64.38",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "it-mil", "label": "Milan, IT", "country":
+ "it", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.192.19,172.232.192.18,172.232.192.16,172.232.192.20,172.232.192.24,172.232.192.21,172.232.192.22,172.232.192.17,172.232.192.15,172.232.192.23",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-mia", "label": "Miami, FL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.233.160.34,172.233.160.27,172.233.160.30,172.233.160.29,172.233.160.32,172.233.160.28,172.233.160.33,172.233.160.26,172.233.160.25,172.233.160.31",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "id-cgk", "label": "Jakarta, ID", "country":
+ "id", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.224.23,172.232.224.32,172.232.224.26,172.232.224.27,172.232.224.21,172.232.224.24,172.232.224.22,172.232.224.20,172.232.224.31,172.232.224.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-lax", "label": "Los Angeles, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.128.45,172.233.128.38,172.233.128.53,172.233.128.37,172.233.128.34,172.233.128.36,172.233.128.33,172.233.128.39,172.233.128.43,172.233.128.44",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "gb-lon", "label": "London 2, UK", "country":
+ "gb", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country":
+ "au", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-bom-2", "label": "Mumbai 2, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "de-fra-2", "label": "Frankfurt 2, DE", "country":
+ "de", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.203.9,172.236.203.16,172.236.203.19,172.236.203.15,172.236.203.17,172.236.203.11,172.236.203.18,172.236.203.14,172.236.203.13,172.236.203.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "sg-sin-2", "label": "Singapore 2, SG", "country":
+ "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-tyo-3", "label": "Tokyo 3, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "172.237.4.15,172.237.4.19,172.237.4.17,172.237.4.21,172.237.4.16,172.237.4.18,172.237.4.23,172.237.4.24,172.237.4.20,172.237.4.14",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-central", "label": "Dallas, TX", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5,72.14.188.5,173.255.199.5,66.228.53.5,96.126.122.5,96.126.124.5,96.126.127.5,198.58.107.5,198.58.111.5,23.239.24.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-west", "label": "Fremont, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5,
+ 173.230.147.5, 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5,
+ 173.255.244.5, 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast",
+ "label": "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5,
+ 96.126.106.5, 50.116.53.5, 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5,
+ 97.107.133.4, 207.192.69.4, 207.192.69.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west",
+ "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5,
+ 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20,
+ 109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country":
+ "sg", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5,139.162.131.5,139.162.132.5,139.162.133.5,139.162.134.5,139.162.135.5,139.162.136.5,139.162.137.5,139.162.138.5,139.162.139.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-northeast", "label": "Tokyo 2, JP", "country":
+ "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}], "page": 1, "pages": 1, "results": 31}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Thu, 05 Dec 2024 21:05:01 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ - Accept-Encoding
+ X-Accepted-Oauth-Scopes:
+ - '*'
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"label":"linodego-test-1733432701621811000","region":"ap-west","placement_group_type":"anti_affinity:local","placement_group_policy":"flexible"}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/placement/groups
+ method: POST
+ response:
+ body: '{"id": 69532, "label": "linodego-test-1733432701621811000", "region": "ap-west",
+ "placement_group_type": "anti_affinity:local", "placement_group_policy": "flexible",
+ "is_compliant": true, "members": [], "migrations": 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:
+ - "222"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Thu, 05 Dec 2024 21:05:01 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-c02714gkd9lv","root_pass":"~W|zK{W2B\u003eP1.5*RWX17m;}9r3TIlydVF;5I`31a-bJ8)F1?d\u00268)fkj8l^h0r2bG","image":"linode/debian10","placement_group":{"id":69532},"booted":true}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances
+ method: POST
+ response:
+ body: '{"id": 68072606, "label": "go-test-ins-c02714gkd9lv", "group": "", "status":
+ "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "type": "g6-nanode-1", "ipv4": ["170.187.238.72"], "ipv6": "1234::5678/128",
+ "image": "linode/debian10", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm",
+ "watchdog_enabled": true, "tags": [], "host_uuid": "da930e82eeecd0e42121a79be169fb0cd193bd7d",
+ "has_user_data": false, "placement_group": {"migrating_to": null, "id": 69532,
+ "label": "linodego-test-1733432701621811000", "placement_group_type": "anti_affinity:local",
+ "placement_group_policy": "flexible"}, "disk_encryption": "enabled", "lke_cluster_id":
+ null, "capabilities": ["SMTP Enabled"]}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Thu, 05 Dec 2024 21:05:03 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Accept-Encoding
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "8"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances/68072606
+ method: GET
+ response:
+ body: '{"id": 68072606, "label": "go-test-ins-c02714gkd9lv", "group": "", "status":
+ "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "type": "g6-nanode-1", "ipv4": ["170.187.238.72"], "ipv6": "1234::5678/128",
+ "image": "linode/debian10", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": "Scheduling", "window": "Scheduling"}, "last_successful": null}, "hypervisor":
+ "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "da930e82eeecd0e42121a79be169fb0cd193bd7d",
+ "has_user_data": false, "placement_group": {"migrating_to": null, "id": 69532,
+ "label": "linodego-test-1733432701621811000", "placement_group_type": "anti_affinity:local",
+ "placement_group_policy": "flexible"}, "disk_encryption": "enabled", "lke_cluster_id":
+ null, "capabilities": ["SMTP Enabled"]}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Thu, 05 Dec 2024 21:05:18 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ - Accept-Encoding
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances/68072606
+ method: GET
+ response:
+ body: '{"id": 68072606, "label": "go-test-ins-c02714gkd9lv", "group": "", "status":
+ "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "type": "g6-nanode-1", "ipv4": ["170.187.238.72"], "ipv6": "1234::5678/128",
+ "image": "linode/debian10", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ {"day": "Scheduling", "window": "Scheduling"}, "last_successful": null}, "hypervisor":
+ "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "da930e82eeecd0e42121a79be169fb0cd193bd7d",
+ "has_user_data": false, "placement_group": {"migrating_to": null, "id": 69532,
+ "label": "linodego-test-1733432701621811000", "placement_group_type": "anti_affinity:local",
+ "placement_group_policy": "flexible"}, "disk_encryption": "enabled", "lke_cluster_id":
+ null, "capabilities": ["SMTP Enabled"]}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Thu, 05 Dec 2024 21:05:33 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ - Accept-Encoding
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances/68072606
+ method: GET
+ response:
+ body: '{"id": 68072606, "label": "go-test-ins-c02714gkd9lv", "group": "", "status":
+ "booting", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "type": "g6-nanode-1", "ipv4": ["170.187.238.72"], "ipv6": "1234::5678/128",
+ "image": "linode/debian10", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": true, "schedule":
+ {"day": "Scheduling", "window": "Scheduling"}, "last_successful": null}, "hypervisor":
+ "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "da930e82eeecd0e42121a79be169fb0cd193bd7d",
+ "has_user_data": false, "placement_group": {"migrating_to": null, "id": 69532,
+ "label": "linodego-test-1733432701621811000", "placement_group_type": "anti_affinity:local",
+ "placement_group_policy": "flexible"}, "disk_encryption": "enabled", "lke_cluster_id":
+ null, "capabilities": ["SMTP Enabled"]}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Thu, 05 Dec 2024 21:05:48 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ - Accept-Encoding
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances/68072606
+ method: GET
+ response:
+ body: '{"id": 68072606, "label": "go-test-ins-c02714gkd9lv", "group": "", "status":
+ "running", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "type": "g6-nanode-1", "ipv4": ["170.187.238.72"], "ipv6": "1234::5678/128",
+ "image": "linode/debian10", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": true, "available": true, "schedule":
+ {"day": "Scheduling", "window": "Scheduling"}, "last_successful": null}, "hypervisor":
+ "kvm", "watchdog_enabled": true, "tags": [], "host_uuid": "da930e82eeecd0e42121a79be169fb0cd193bd7d",
+ "has_user_data": false, "placement_group": {"migrating_to": null, "id": 69532,
+ "label": "linodego-test-1733432701621811000", "placement_group_type": "anti_affinity:local",
+ "placement_group_policy": "flexible"}, "disk_encryption": "enabled", "lke_cluster_id":
+ null, "capabilities": ["SMTP Enabled"]}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Thu, 05 Dec 2024 21:06:03 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ - Accept-Encoding
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"label":"linodego-test-1733432763768220000","region":"ca-central","placement_group_type":"anti_affinity:local","placement_group_policy":"flexible"}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/placement/groups
+ method: POST
+ response:
+ body: '{"id": 69533, "label": "linodego-test-1733432763768220000", "region": "ca-central",
+ "placement_group_type": "anti_affinity:local", "placement_group_policy": "flexible",
+ "is_compliant": true, "members": [], "migrations": 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:
+ - "225"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Thu, 05 Dec 2024 21:06:03 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"type":"cold","region":"ca-central","upgrade":false,"placement_group":{"id":69533}}'
+ 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/68072606/migrate
+ method: POST
+ response:
+ body: '{}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ 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, 05 Dec 2024 21:06:04 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/placement/groups/69533
+ method: GET
+ response:
+ body: '{"id": 69533, "label": "linodego-test-1733432763768220000", "region": "ca-central",
+ "placement_group_type": "anti_affinity:local", "placement_group_policy": "flexible",
+ "is_compliant": true, "members": [{"linode_id": 68072606, "is_compliant": true}],
+ "migrations": {"inbound": [{"linode_id": 68072606}]}}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "304"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Thu, 05 Dec 2024 21:06:04 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/placement/groups/69532
+ method: GET
+ response:
+ body: '{"id": 69532, "label": "linodego-test-1733432701621811000", "region": "ap-west",
+ "placement_group_type": "anti_affinity:local", "placement_group_policy": "flexible",
+ "is_compliant": true, "members": [{"linode_id": 68072606, "is_compliant": true}],
+ "migrations": {"outbound": [{"linode_id": 68072606}]}}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "302"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Thu, 05 Dec 2024 21:06:04 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances/68072606
+ 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, 05 Dec 2024 21:06:06 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/placement/groups/69533
+ 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, 05 Dec 2024 21:06:07 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/placement/groups/69532
+ 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, 05 Dec 2024 21:06:07 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
diff --git a/test/integration/fixtures/TestLKECluster_withACL.yaml b/test/integration/fixtures/TestLKECluster_withACL.yaml
index 552309342..1154bc09d 100644
--- a/test/integration/fixtures/TestLKECluster_withACL.yaml
+++ b/test/integration/fixtures/TestLKECluster_withACL.yaml
@@ -14,85 +14,263 @@ interactions:
url: https://api.linode.com/v4beta/regions?page=1
method: GET
response:
- body: '{"data": [{"id": "ap-west", "label": "Mumbai, India", "country": "in",
- "capabilities": ["Linodes", "Backups", "NodeBalancers", "Vlans", "VPCs", "Managed
- Databases"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5,172.105.35.5,172.105.36.5,172.105.37.5,172.105.38.5,172.105.39.5,172.105.40.5,172.105.41.5,172.105.42.5,172.105.43.5",
+ body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.34.5,172.105.35.5,172.105.36.5,172.105.37.5,172.105.38.5,172.105.39.5,172.105.40.5,172.105.41.5,172.105.42.5,172.105.43.5",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, Ontario, CAN",
- "country": "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Vlans",
- "VPCs", "Managed Databases"], "status": "ok", "resolvers": {"ipv4": "172.105.0.5,172.105.3.5,172.105.4.5,172.105.5.5,172.105.6.5,172.105.7.5,172.105.8.5,172.105.9.5,172.105.10.5,172.105.11.5",
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.0.5,172.105.3.5,172.105.4.5,172.105.5.5,172.105.6.5,172.105.7.5,172.105.8.5,172.105.9.5,172.105.10.5,172.105.11.5",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, NSW, Australia",
- "country": "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Vlans",
- "VPCs", "Managed Databases"], "status": "ok", "resolvers": {"ipv4": "172.105.166.5,172.105.169.5,172.105.168.5,172.105.172.5,172.105.162.5,172.105.170.5,172.105.167.5,172.105.171.5,172.105.181.5,172.105.161.5",
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.166.5,172.105.169.5,172.105.168.5,172.105.172.5,172.105.162.5,172.105.170.5,172.105.167.5,172.105.171.5,172.105.181.5,172.105.161.5",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "fake-cph-4", "label": "Fake CPH 4, DK", "country":
- "dk", "capabilities": ["Linodes", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "8.8.8.8,1.1.1.1,1.0.0.1,8.8.4.4", "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "fake-cph-5", "label": "Fake CPH 5, DK", "country":
- "dk", "capabilities": ["Linodes", "Metadata"], "status": "ok", "resolvers":
- {"ipv4": "8.8.8.8,1.1.1.1,1.0.0.1,8.8.4.4", "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "billing66", "label": "Billing Automation,
- BA", "country": "dk", "capabilities": ["Linodes", "Metadata"], "status": "ok",
- "resolvers": {"ipv4": "8.8.8.8,1.1.1.1,1.0.0.1,8.8.4.4", "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "billing67", "label": "Billing Automation,
- BA", "country": "dk", "capabilities": ["Linodes", "Metadata"], "status": "ok",
- "resolvers": {"ipv4": "8.8.8.8,1.1.1.1,1.0.0.1,8.8.4.4", "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "billing100", "label": "Billing Automation,
- BA", "country": "dk", "capabilities": ["Linodes", "Metadata"], "status": "ok",
- "resolvers": {"ipv4": "8.8.8.8,1.1.1.1,1.0.0.1,8.8.4.4", "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "us-central", "label": "Dallas, TX, USA", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Kubernetes",
- "Managed Databases"], "status": "ok", "resolvers": {"ipv4": "72.14.179.5,72.14.188.5,173.255.199.5,66.228.53.5,96.126.122.5,96.126.124.5,96.126.127.5,198.58.107.5,198.58.111.5,23.239.24.5",
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-iad", "label": "Washington, DC", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "139.144.192.62,139.144.192.60,139.144.192.61,139.144.192.53,139.144.192.54,139.144.192.67,139.144.192.69,139.144.192.66,139.144.192.52,139.144.192.68",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "us-west", "label": "Fremont, CA, USA", "country":
- "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Managed Databases"],
- "status": "ok", "resolvers": {"ipv4": "173.230.145.5,173.230.147.5,173.230.155.5,173.255.212.5,173.255.219.5,173.255.241.5,173.255.243.5,173.255.244.5,74.207.241.5,74.207.242.5",
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17,172.232.0.16,172.232.0.21,172.232.0.13,172.232.0.22,172.232.0.9,172.232.0.19,172.232.0.20,172.232.0.15,172.232.0.18",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "us-southeast", "label": "Atlanta, GA, USA",
- "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Managed
- Databases"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.5",
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "fr-par", "label": "Paris, FR", "country":
+ "fr", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.32.21,172.232.32.23,172.232.32.17,172.232.32.18,172.232.32.16,172.232.32.22,172.232.32.20,172.232.32.14,172.232.32.11,172.232.32.12",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ, USA", "country":
- "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-sea", "label": "Seattle, WA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,172.232.160.21,172.232.160.17,172.232.160.15,172.232.160.18,172.232.160.8,172.232.160.12,172.232.160.11,172.232.160.14,172.232.160.16",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.233.0.4,172.233.0.9,172.233.0.7,172.233.0.12,172.233.0.5,172.233.0.13,172.233.0.10,172.233.0.6,172.233.0.8,172.233.0.11",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
+ "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.33.36,172.233.33.38,172.233.33.35,172.233.33.39,172.233.33.34,172.233.33.33,172.233.33.31,172.233.33.30,172.233.33.37,172.233.33.32",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.232.128.24,172.232.128.26,172.232.128.20,172.232.128.22,172.232.128.25,172.232.128.19,172.232.128.23,172.232.128.18,172.232.128.21,172.232.128.27",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.233.111.6,172.233.111.17,172.233.111.21,172.233.111.25,172.233.111.19,172.233.111.12,172.233.111.26,172.233.111.16,172.233.111.18,172.233.111.9",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.232.96.17,172.232.96.26,172.232.96.19,172.232.96.20,172.232.96.25,172.232.96.21,172.232.96.18,172.232.96.22,172.232.96.23,172.232.96.24",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
"Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Bare Metal", "Vlans", "VPCs", "Block Storage Migrations", "Managed Databases",
- "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",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.64.44,172.233.64.43,172.233.64.37,172.233.64.40,172.233.64.46,172.233.64.41,172.233.64.39,172.233.64.42,172.233.64.45,172.233.64.38",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "it-mil", "label": "Milan, IT", "country":
+ "it", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
+ "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.232.192.19,172.232.192.18,172.232.192.16,172.232.192.20,172.232.192.24,172.232.192.21,172.232.192.22,172.232.192.17,172.232.192.15,172.232.192.23",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, England, UK",
- "country": "uk", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Cloud
- Firewall", "Vlans", "VPCs", "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",
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-mia", "label": "Miami, FL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.160.34,172.233.160.27,172.233.160.30,172.233.160.29,172.233.160.32,172.233.160.28,172.233.160.33,172.233.160.26,172.233.160.25,172.233.160.31",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "id-cgk", "label": "Jakarta, ID", "country":
+ "id", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.224.23,172.232.224.32,172.232.224.26,172.232.224.27,172.232.224.21,172.232.224.24,172.232.224.22,172.232.224.20,172.232.224.31,172.232.224.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-lax", "label": "Los Angeles, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.128.45,172.233.128.38,172.233.128.53,172.233.128.37,172.233.128.34,172.233.128.36,172.233.128.33,172.233.128.39,172.233.128.43,172.233.128.44",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "nz-akl-1", "label": "Auckland, NZ", "country":
+ "nz", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata", "Distributed
+ Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-den-1",
+ "label": "Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud Firewall",
+ "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4":
+ "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "de-ham-1", "label": "Hamburg, DE",
+ "country": "de", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata",
+ "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-1",
+ "label": "Marseille, FR", "country": "fr", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "za-jnb-1", "label": "Johannesburg,
+ ZA", "country": "za", "capabilities": ["Linodes", "Cloud Firewall", "Vlans",
+ "Metadata", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-1",
+ "label": "Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "mx-qro-1", "label": "Quer\u00e9taro,
+ MX", "country": "mx", "capabilities": ["Linodes", "Cloud Firewall", "Vlans",
+ "Metadata", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-1",
+ "label": "Houston, TX", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "cl-scl-1", "label": "Santiago, CL",
+ "country": "cl", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata",
+ "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "gb-lon",
+ "label": "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Disk
+ Encryption", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country":
+ "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-bom-2", "label": "Mumbai 2, IN", "country":
+ "in", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "sg-sin-2", "label": "Singapore 2, SG", "country":
+ "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-central", "label": "Dallas, TX", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
+ 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, 173.255.212.5,
+ 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, 74.207.242.5",
+ "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
+ {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type":
+ "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country": "us", "capabilities":
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.5",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country":
- "sg", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Managed Databases"],
- "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ", "country":
+ "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
+ 207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country":
+ "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Metadata",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "178.79.182.5,
+ 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5,
+ 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
+ "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "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", "Managed Databases"],
+ "de", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group", "StackScripts"],
"status": "ok", "resolvers": {"ipv4": "139.162.130.5,139.162.131.5,139.162.132.5,139.162.133.5,139.162.134.5,139.162.135.5,139.162.136.5,139.162.137.5,139.162.138.5,139.162.139.5",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "ap-northeast", "label": "Tokyo 2, JP", "country":
- "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Managed Databases"],
- "status": "ok", "resolvers": {"ipv4": "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.5",
+ "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.5",
"ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
- 5}, "site_type": "core"}], "page": 1, "pages": 1, "results": 16}'
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}], "page": 1, "pages": 1, "results": 38}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -104,21 +282,26 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- - private, max-age=900
- - private, max-age=60, s-maxage=60
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 14 Nov 2024 18:41:25 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:
- '*'
X-Content-Type-Options:
@@ -127,16 +310,19 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"]}],"label":"go-test-def","region":"us-east","k8s_version":"1.29","tags":["testing"],"control_plane":{"acl":{"enabled":true,"addresses":{"ipv4":["10.0.0.1/32"],"ipv6":["1234::5678"]}}}}'
+ body: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"],"labels":null,"taints":null}],"label":"go-test-def","region":"ap-west","k8s_version":"1.29","tags":["testing"],"control_plane":{"acl":{"enabled":true,"addresses":{"ipv4":["10.0.0.1/32"],"ipv6":["1234::5678"]},"revision_id":""}}}'
form: {}
headers:
Accept:
@@ -148,8 +334,8 @@ interactions:
url: https://api.linode.com/v4beta/lke/clusters
method: POST
response:
- body: '{"id": 7938, "status": "ready", "created": "2018-01-02T03:04:05", "updated":
- "2018-01-02T03:04:05", "label": "go-test-def", "region": "us-east", "k8s_version":
+ body: '{"id": 267609, "status": "ready", "created": "2018-01-02T03:04:05", "updated":
+ "2018-01-02T03:04:05", "label": "go-test-def", "region": "ap-west", "k8s_version":
"1.29", "control_plane": {"high_availability": false}, "tags": ["testing"]}'
headers:
Access-Control-Allow-Credentials:
@@ -162,16 +348,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:
- - "235"
+ - "237"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 14 Nov 2024 18:41:38 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -184,9 +376,12 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -202,11 +397,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/lke/clusters/7938/control_plane_acl
+ url: https://api.linode.com/v4beta/lke/clusters/267609/control_plane_acl
method: GET
response:
body: '{"acl": {"enabled": true, "addresses": {"ipv4": ["10.0.0.1/32"], "ipv6":
- ["1234::5678/128"]}}}'
+ ["1234::5678/128"]}, "revision-id": "4f79fce1dcc4428cbb3d7689ed2ca02e"}}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -218,17 +413,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:
- - "94"
+ - "145"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 14 Nov 2024 18:41:39 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -242,16 +442,19 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"acl":{"enabled":true,"addresses":{"ipv4":["10.0.0.2/32"],"ipv6":[]}}}'
+ body: '{"acl":{"enabled":true,"addresses":{"ipv4":["10.0.0.2/32"],"ipv6":[]},"revision_id":"test-revision-id"}}'
form: {}
headers:
Accept:
@@ -260,10 +463,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/lke/clusters/7938/control_plane_acl
+ url: https://api.linode.com/v4beta/lke/clusters/267609/control_plane_acl
method: PUT
response:
- body: '{"acl": {"enabled": true, "addresses": {"ipv4": ["10.0.0.2/32"]}}}'
+ body: '{"acl": {"enabled": true, "addresses": {"ipv4": ["10.0.0.2/32"]}, "revision-id":
+ "0918bd479bfa4b7f9a9dbf4eff5d342d"}}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -275,16 +479,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:
- - "66"
+ - "117"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 14 Nov 2024 18:41:42 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -297,9 +507,12 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -315,7 +528,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/lke/clusters/7938/control_plane_acl
+ url: https://api.linode.com/v4beta/lke/clusters/267609/control_plane_acl
method: DELETE
response:
body: '{}'
@@ -330,16 +543,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, 14 Nov 2024 18:41:44 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -352,9 +571,12 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -370,10 +592,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/lke/clusters/7938/control_plane_acl
+ url: https://api.linode.com/v4beta/lke/clusters/267609/control_plane_acl
method: GET
response:
- body: '{"acl": {"enabled": false, "addresses": null}}'
+ body: '{"acl": {"enabled": false, "addresses": null, "revision-id": "110c82df2d08416e94472e6eb340b06f"}}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -385,17 +607,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:
- - "46"
+ - "97"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
- Server:
- - nginx
+ Expires:
+ - Thu, 14 Nov 2024 18:41:45 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -409,9 +636,12 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -427,7 +657,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/lke/clusters/7938
+ url: https://api.linode.com/v4beta/lke/clusters/267609
method: DELETE
response:
body: '{}'
@@ -442,16 +672,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, 14 Nov 2024 18:41:49 GMT
+ Pragma:
+ - no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
@@ -464,9 +700,12 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - '*'
+ - account:read_write databases:read_write domains:read_write events:read_write
+ firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
+ longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
+ volumes:read_write vpc:read_write
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
diff --git a/test/integration/fixtures/TestOAuthClients_Reset.yaml b/test/integration/fixtures/TestOAuthClients_Reset.yaml
new file mode 100644
index 000000000..d4dce1ac8
--- /dev/null
+++ b/test/integration/fixtures/TestOAuthClients_Reset.yaml
@@ -0,0 +1,190 @@
+---
+version: 1
+interactions:
+- request:
+ body: '{"redirect_uri":"https://example.com","label":"go-client-test","public":true}'
+ 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/oauth-clients
+ method: POST
+ response:
+ body: '{"id": "757a5af92718d7369687", "redirect_uri": "https://example.com", "label":
+ "go-client-test", "status": "active", "secret": "1950e1df7217e8f8f1543ba8b1d12c03e6088eb1429e10549e18c650b677015f",
+ "thumbnail_url": null, "public": true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "233"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Tue, 03 Dec 2024 01:14:47 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - account:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/account/oauth-clients/757a5af92718d7369687/reset-secret
+ method: POST
+ response:
+ body: '{"id": "757a5af92718d7369687", "redirect_uri": "https://example.com", "label":
+ "go-client-test", "status": "active", "secret": "af3ccc4a7d881a8a858593080d0bffb1e9c6b1917cb88e28bd2b10ad885679cb",
+ "thumbnail_url": null, "public": true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "233"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Tue, 03 Dec 2024 01:14:47 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - account:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/account/oauth-clients/757a5af92718d7369687
+ method: DELETE
+ response:
+ body: '{}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "2"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Tue, 03 Dec 2024 01:14:48 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - account:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
diff --git a/test/integration/fixtures/TestObjectStorageObject_ACLConfig_Bucket_Delete.yaml b/test/integration/fixtures/TestObjectStorageObject_ACLConfig_Bucket_Delete.yaml
index 8a146cf7c..1e614680e 100644
--- a/test/integration/fixtures/TestObjectStorageObject_ACLConfig_Bucket_Delete.yaml
+++ b/test/integration/fixtures/TestObjectStorageObject_ACLConfig_Bucket_Delete.yaml
@@ -5,7 +5,7 @@ interactions:
body: ""
form: {}
headers: {}
- url: https://us-east-1.linodeobjects.com:443/go-bucket-test-def/test?Signature=RbVnqyWJd6OMpr7Sn7kQOBezqfU%3D&Expires=1720635223&AWSAccessKeyID=SANITIZED
+ url: https://us-east-1.linodeobjects.com:443/go-bucket-test-def/test?Signature=IRuyHRdpyXWhh2aQjNZwsCI4Zw0%3D&Expires=1732717668&AWSAccessKeyID=SANITIZED
method: DELETE
response:
body: ""
@@ -13,7 +13,7 @@ interactions:
Connection:
- keep-alive
X-Amz-Request-Id:
- - tx0000076a0ecf723c8a652-00668ecdef-9e8b82a1-default
+ - tx00000a853072ba4ae0eeb-0067472afc-ef83577d-default
status: 204 No Content
code: 204
duration: ""
diff --git a/test/integration/fixtures/TestObjectStorageObject_ACLConfig_Bucket_Put.yaml b/test/integration/fixtures/TestObjectStorageObject_ACLConfig_Bucket_Put.yaml
index 18c116ee3..45a2386ef 100644
--- a/test/integration/fixtures/TestObjectStorageObject_ACLConfig_Bucket_Put.yaml
+++ b/test/integration/fixtures/TestObjectStorageObject_ACLConfig_Bucket_Put.yaml
@@ -7,7 +7,7 @@ interactions:
headers:
Content-Type:
- text/plain
- url: https://us-east-1.linodeobjects.com:443/go-bucket-test-def/test?Signature=GShs5R09JONsfP%2Fb5k802GBEQjA%3D&Expires=1720635214&AWSAccessKeyID=SANITIZED
+ url: https://us-east-1.linodeobjects.com:443/go-bucket-test-def/test?Signature=k0XyLLvzmzaHLogj2FDHySorg6E%3D&Expires=1732717660&AWSAccessKeyID=SANITIZED
method: PUT
response:
body: ""
@@ -21,7 +21,7 @@ interactions:
Etag:
- '"7f2ababa423061c509f4923dd04b6cf1"'
X-Amz-Request-Id:
- - tx0000063a9f63cc823d175-00668ecde6-9e8b8d69-default
+ - tx00000640ed2ef823b369b-0067472af5-f0b7e689-default
status: 200 OK
code: 200
duration: ""
diff --git a/test/integration/fixtures/TestObjectStorageObject_Smoke.yaml b/test/integration/fixtures/TestObjectStorageObject_Smoke.yaml
new file mode 100644
index 000000000..e450f6128
--- /dev/null
+++ b/test/integration/fixtures/TestObjectStorageObject_Smoke.yaml
@@ -0,0 +1,503 @@
+---
+version: 1
+interactions:
+- request:
+ body: '{"cluster":"us-east-1","label":"go-bucket-test-def"}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/object-storage/buckets
+ method: POST
+ response:
+ body: '{"hostname": "go-bucket-test-def.us-east-1.linodeobjects.com", "label":
+ "go-bucket-test-def", "created": "2018-01-02T03:04:05", "region": "us-east",
+ "cluster": "us-east-1", "size": 0, "objects": 0}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "197"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 27 Nov 2024 14:21:38 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - object_storage:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"name":"test","method":"PUT","content_type":"text/plain","expires_in":360}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/go-bucket-test-def/object-url
+ method: POST
+ response:
+ body: '{"url": "https://us-east-1.linodeobjects.com:443/go-bucket-test-def/test?Signature=k0XyLLvzmzaHLogj2FDHySorg6E%3D&Expires=1732717660&AWSAccessKeyID=SANITIZED",
+ "exists": false}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "187"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 27 Nov 2024 14:21:40 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - object_storage:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/go-bucket-test-def/object-acl?name=test
+ method: GET
+ response:
+ body: '{"acl": "private", "acl_xml": "640757b5-ebe9-45b1-abd5-581f215ef89e640757b5-ebe9-45b1-abd5-581f215ef89e640757b5-ebe9-45b1-abd5-581f215ef89e640757b5-ebe9-45b1-abd5-581f215ef89eFULL_CONTROL"}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "550"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 27 Nov 2024 14:21:42 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - object_storage:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/go-bucket-test-def/object-list
+ method: GET
+ response:
+ body: '{"data": [{"name": "test", "size": 10, "last_modified": "2018-01-02T03:04:05.263Z",
+ "etag": "7f2ababa423061c509f4923dd04b6cf1", "owner": "640757b5-ebe9-45b1-abd5-581f215ef89e"}],
+ "next_marker": null, "is_truncated": false}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "222"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 27 Nov 2024 14:21:43 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - object_storage:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"name":"test","acl":"public-read"}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/go-bucket-test-def/object-acl
+ method: PUT
+ response:
+ body: '{}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "2"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 27 Nov 2024 14:21:44 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - object_storage:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/go-bucket-test-def/object-acl?name=test
+ method: GET
+ response:
+ body: '{"acl": "public-read", "acl_xml": "640757b5-ebe9-45b1-abd5-581f215ef89e640757b5-ebe9-45b1-abd5-581f215ef89ehttp://acs.amazonaws.com/groups/global/AllUsersREAD640757b5-ebe9-45b1-abd5-581f215ef89e640757b5-ebe9-45b1-abd5-581f215ef89eFULL_CONTROL"}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "750"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 27 Nov 2024 14:21:46 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - object_storage:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"name":"test","method":"DELETE","expires_in":360}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/go-bucket-test-def/object-url
+ method: POST
+ response:
+ body: '{"url": "https://us-east-1.linodeobjects.com:443/go-bucket-test-def/test?Signature=IRuyHRdpyXWhh2aQjNZwsCI4Zw0%3D&Expires=1732717668&AWSAccessKeyID=SANITIZED",
+ "exists": true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "186"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 27 Nov 2024 14:21:48 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - object_storage:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/go-bucket-test-def
+ 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:
+ - Wed, 27 Nov 2024 14:21:54 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - object_storage:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
diff --git a/test/integration/fixtures/TestUserGrants_Update.yaml b/test/integration/fixtures/TestUserGrants_Update.yaml
index 01d70d8e4..8e9a8a2c3 100644
--- a/test/integration/fixtures/TestUserGrants_Update.yaml
+++ b/test/integration/fixtures/TestUserGrants_Update.yaml
@@ -41,7 +41,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 25 Jul 2024 17:44:10 GMT
+ - Tue, 19 Nov 2024 20:30:59 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -56,19 +56,16 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - account:read_write databases:read_write domains:read_write events:read_write
- firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
- longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
- volumes:read_write vpc:read_write
+ - '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"global":{"account_access":"read_only","add_databases":true,"add_domains":false,"add_firewalls":true,"add_images":true,"add_linodes":false,"add_longview":true,"add_nodebalancers":false,"add_stackscripts":true,"add_volumes":true,"cancel_account":false,"longview_subscription":false}}'
+ body: '{"global":{"account_access":"read_only","add_databases":true,"add_domains":false,"add_firewalls":true,"add_images":true,"add_linodes":false,"add_longview":true,"add_nodebalancers":false,"add_placement_groups":false,"add_stackscripts":true,"add_volumes":true,"add_vpcs":true,"cancel_account":false,"child_account_access":false,"longview_subscription":false}}'
form: {}
headers:
Accept:
@@ -80,42 +77,17 @@ interactions:
url: https://api.linode.com/v4beta/account/users/linodegotest-updateusergrants/grants
method: PUT
response:
- 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}}'
+ body: '{"linode": [], "nodebalancer": [{"id": 1051282, "label": "balancer12345",
+ "permissions": null}], "domain": [{"id": 3162745, "label": "example.clone-1731948401076807000-inttestsdk.org",
+ "permissions": null}], "stackscript": [], "longview": [], "image": [], "volume":
+ [], "firewall": [{"id": 1214534, "label": "cloudfw-1731954852210218000", "permissions":
+ null}, {"id": 1222347, "label": "e2e-fw-1732043552", "permissions": null}, {"id":
+ 1223238, "label": "cloudfw-1732048258071021000", "permissions": null}], "database":
+ [], "vpc": [], "global": {"add_nodebalancers": false, "child_account_access":
+ null, "add_longview": true, "add_volumes": true, "add_vpcs": true, "add_stackscripts":
+ true, "add_domains": false, "add_linodes": false, "add_images": true, "add_databases":
+ true, "longview_subscription": false, "add_firewalls": true, "account_access":
+ "read_only", "cancel_account": false}}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -138,7 +110,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 25 Jul 2024 17:44:10 GMT
+ - Tue, 19 Nov 2024 20:31:00 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -154,12 +126,9 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - account:read_write databases:read_write domains:read_write events:read_write
- firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
- longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
- volumes:read_write vpc:read_write
+ - '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -203,7 +172,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 25 Jul 2024 17:44:10 GMT
+ - Tue, 19 Nov 2024 20:31:00 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -218,12 +187,9 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - account:read_write databases:read_write domains:read_write events:read_write
- firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
- longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
- volumes:read_write vpc:read_write
+ - '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
diff --git a/test/integration/fixtures/TestUserGrants_UpdateNoAccess.yaml b/test/integration/fixtures/TestUserGrants_UpdateNoAccess.yaml
index a8bf5df74..a537f4d7f 100644
--- a/test/integration/fixtures/TestUserGrants_UpdateNoAccess.yaml
+++ b/test/integration/fixtures/TestUserGrants_UpdateNoAccess.yaml
@@ -41,7 +41,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 25 Jul 2024 17:44:11 GMT
+ - Tue, 19 Nov 2024 20:31:01 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -56,19 +56,16 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - account:read_write databases:read_write domains:read_write events:read_write
- firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
- longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
- volumes:read_write vpc:read_write
+ - '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"global":{"account_access":null,"add_databases":false,"add_domains":false,"add_firewalls":false,"add_images":false,"add_linodes":false,"add_longview":false,"add_nodebalancers":false,"add_stackscripts":false,"add_volumes":false,"cancel_account":false,"longview_subscription":false}}'
+ body: '{"global":{"account_access":null,"add_databases":false,"add_domains":false,"add_firewalls":false,"add_images":false,"add_linodes":false,"add_longview":false,"add_nodebalancers":false,"add_placement_groups":false,"add_stackscripts":false,"add_volumes":false,"add_vpcs":false,"cancel_account":false,"child_account_access":false,"longview_subscription":false}}'
form: {}
headers:
Accept:
@@ -80,42 +77,17 @@ interactions:
url: https://api.linode.com/v4beta/account/users/linodegotest-updateusergrantsna/grants
method: PUT
response:
- 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}}'
+ body: '{"linode": [], "nodebalancer": [{"id": 1051282, "label": "balancer12345",
+ "permissions": null}], "domain": [{"id": 3162745, "label": "example.clone-1731948401076807000-inttestsdk.org",
+ "permissions": null}], "stackscript": [], "longview": [], "image": [], "volume":
+ [], "firewall": [{"id": 1214534, "label": "cloudfw-1731954852210218000", "permissions":
+ null}, {"id": 1222347, "label": "e2e-fw-1732043552", "permissions": null}, {"id":
+ 1223238, "label": "cloudfw-1732048258071021000", "permissions": null}], "database":
+ [], "vpc": [], "global": {"add_firewalls": false, "add_stackscripts": false,
+ "add_volumes": false, "add_vpcs": false, "longview_subscription": false, "child_account_access":
+ null, "add_linodes": false, "add_databases": false, "add_domains": false, "add_images":
+ false, "add_longview": false, "add_nodebalancers": false, "account_access":
+ null, "cancel_account": false}}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -138,7 +110,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 25 Jul 2024 17:44:11 GMT
+ - Tue, 19 Nov 2024 20:31:02 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -154,12 +126,9 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - account:read_write databases:read_write domains:read_write events:read_write
- firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
- longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
- volumes:read_write vpc:read_write
+ - '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -203,7 +172,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 25 Jul 2024 17:44:11 GMT
+ - Tue, 19 Nov 2024 20:31:02 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -218,12 +187,9 @@ interactions:
- DENY
- DENY
X-Oauth-Scopes:
- - account:read_write databases:read_write domains:read_write events:read_write
- firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write
- longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write
- volumes:read_write vpc:read_write
+ - '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
diff --git a/test/integration/fixtures/TestVolume_WaitForLinodeID_linode.yaml b/test/integration/fixtures/TestVolume_WaitForLinodeID_linode.yaml
index 03a1e65c2..c976069ab 100644
--- a/test/integration/fixtures/TestVolume_WaitForLinodeID_linode.yaml
+++ b/test/integration/fixtures/TestVolume_WaitForLinodeID_linode.yaml
@@ -15,264 +15,281 @@ interactions:
method: GET
response:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "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-ord", "label": "Chicago, IL", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
- Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
- "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
- 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
- "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
- "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.34.5,172.105.35.5,172.105.36.5,172.105.37.5,172.105.38.5,172.105.39.5,172.105.40.5,172.105.41.5,172.105.42.5,172.105.43.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.0.5,172.105.3.5,172.105.4.5,172.105.5.5,172.105.6.5,172.105.7.5,172.105.8.5,172.105.9.5,172.105.10.5,172.105.11.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.166.5,172.105.169.5,172.105.168.5,172.105.172.5,172.105.162.5,172.105.170.5,172.105.167.5,172.105.171.5,172.105.181.5,172.105.161.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-iad", "label": "Washington, DC", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "139.144.192.62,139.144.192.60,139.144.192.61,139.144.192.53,139.144.192.54,139.144.192.67,139.144.192.69,139.144.192.66,139.144.192.52,139.144.192.68",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17,172.232.0.16,172.232.0.21,172.232.0.13,172.232.0.22,172.232.0.9,172.232.0.19,172.232.0.20,172.232.0.15,172.232.0.18",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "fr-par", "label": "Paris, FR", "country":
+ "fr", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.32.21,172.232.32.23,172.232.32.17,172.232.32.18,172.232.32.16,172.232.32.22,172.232.32.20,172.232.32.14,172.232.32.11,172.232.32.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-sea", "label": "Seattle, WA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,172.232.160.21,172.232.160.17,172.232.160.15,172.232.160.18,172.232.160.8,172.232.160.12,172.232.160.11,172.232.160.14,172.232.160.16",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,172.233.0.9,172.233.0.7,172.233.0.12,172.233.0.5,172.233.0.13,172.233.0.10,172.233.0.6,172.233.0.8,172.233.0.11",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
- "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"],
- "status": "ok", "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20,
- 172.232.128.22, 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18,
- 172.232.128.21, 172.232.128.27", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25,
- 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18,
- 172.233.111.9", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20,
- 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
- 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
- "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
- 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
- "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32,
- 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
- "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
- 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
- "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
- 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
- "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
- "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
- 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
- "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
- "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
- 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
- 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": 100,
- "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
- "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.33.36,172.233.33.38,172.233.33.35,172.233.33.39,172.233.33.34,172.233.33.33,172.233.33.31,172.233.33.30,172.233.33.37,172.233.33.32",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.232.128.24,172.232.128.26,172.232.128.20,172.232.128.22,172.232.128.25,172.232.128.19,172.232.128.23,172.232.128.18,172.232.128.21,172.232.128.27",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,172.233.111.17,172.233.111.21,172.233.111.25,172.233.111.19,172.233.111.12,172.233.111.26,172.233.111.16,172.233.111.18,172.233.111.9",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.232.96.17,172.232.96.26,172.232.96.19,172.232.96.20,172.232.96.25,172.232.96.21,172.232.96.18,172.232.96.22,172.232.96.23,172.232.96.24",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.64.44,172.233.64.43,172.233.64.37,172.233.64.40,172.233.64.46,172.233.64.41,172.233.64.39,172.233.64.42,172.233.64.45,172.233.64.38",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "it-mil", "label": "Milan, IT", "country":
+ "it", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.192.19,172.232.192.18,172.232.192.16,172.232.192.20,172.232.192.24,172.232.192.21,172.232.192.22,172.232.192.17,172.232.192.15,172.232.192.23",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-mia", "label": "Miami, FL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.233.160.34,172.233.160.27,172.233.160.30,172.233.160.29,172.233.160.32,172.233.160.28,172.233.160.33,172.233.160.26,172.233.160.25,172.233.160.31",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "id-cgk", "label": "Jakarta, ID", "country":
+ "id", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.224.23,172.232.224.32,172.232.224.26,172.232.224.27,172.232.224.21,172.232.224.24,172.232.224.22,172.232.224.20,172.232.224.31,172.232.224.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-lax", "label": "Los Angeles, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.128.45,172.233.128.38,172.233.128.53,172.233.128.37,172.233.128.34,172.233.128.36,172.233.128.33,172.233.128.39,172.233.128.43,172.233.128.44",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "nz-akl-1", "label": "Auckland, NZ", "country":
+ "nz", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata", "Distributed
+ Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-den-1",
+ "label": "Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud Firewall",
+ "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4":
+ "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "de-ham-1", "label": "Hamburg, DE",
+ "country": "de", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata",
+ "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-1",
+ "label": "Marseille, FR", "country": "fr", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "za-jnb-1", "label": "Johannesburg,
+ ZA", "country": "za", "capabilities": ["Linodes", "Cloud Firewall", "Vlans",
+ "Metadata", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-1",
+ "label": "Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "mx-qro-1", "label": "Quer\u00e9taro,
+ MX", "country": "mx", "capabilities": ["Linodes", "Cloud Firewall", "Vlans",
+ "Metadata", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-1",
+ "label": "Houston, TX", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "cl-scl-1", "label": "Santiago, CL",
+ "country": "cl", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata",
+ "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "gb-lon",
+ "label": "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Block
+ Storage Encryption", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country":
+ "au", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-bom-2", "label": "Mumbai 2, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "de-fra-2", "label": "Frankfurt 2, DE", "country":
+ "de", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.203.9,172.236.203.16,172.236.203.19,172.236.203.15,172.236.203.17,172.236.203.11,172.236.203.18,172.236.203.14,172.236.203.13,172.236.203.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "sg-sin-2", "label": "Singapore 2, SG", "country":
+ "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-tyo-3", "label": "Tokyo 3, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "172.237.4.15,172.237.4.19,172.237.4.17,172.237.4.21,172.237.4.16,172.237.4.18,172.237.4.23,172.237.4.24,172.237.4.20,172.237.4.14",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-central", "label": "Dallas, TX", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5,72.14.188.5,173.255.199.5,66.228.53.5,96.126.122.5,96.126.124.5,96.126.127.5,198.58.107.5,198.58.111.5,23.239.24.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-west", "label": "Fremont, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
"Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
- Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
- 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
- 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5,
+ 173.230.147.5, 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5,
+ 173.255.244.5, 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": 100,
- "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
- "Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
- Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast",
+ "label": "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ", "country":
+ "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "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":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
- "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
- 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
- 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Metadata",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "178.79.182.5,
+ 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5,
+ 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
- "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.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",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.130.5,139.162.131.5,139.162.132.5,139.162.133.5,139.162.134.5,139.162.135.5,139.162.136.5,139.162.137.5,139.162.138.5,139.162.139.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-northeast", "label": "Tokyo 2, JP", "country":
+ "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
"Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
- "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.66.5,
- 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5, 139.162.71.5, 139.162.72.5,
- 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}], "page": 1, "pages":
- 1, "results": 27}'
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}], "page": 1, "pages": 1, "results": 40}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -295,7 +312,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 20:01:28 GMT
+ - Thu, 28 Nov 2024 05:52:41 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -314,14 +331,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-8w21pl1h4n1x","root_pass":"j(M42Z06~?Z}q8\\Hq36]uiqJRKT?kZ8h^`oVXv056a0o7C\u0026\u003e5E1NfK+g\\v:`n\u003cV8","image":"linode/debian9","firewall_id":653602,"booted":false}'
+ body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-4n57ej5b4bz0","root_pass":"{N;i4qeSf5i1G0Kr3\u003cPB,}JZ)hG18v4(e]`5!J7t\u003e0!x2xvidfQ|WU\u003e6{VMT[058","image":"linode/debian12","firewall_id":1262477,"booted":false}'
form: {}
headers:
Accept:
@@ -333,16 +350,17 @@ interactions:
url: https://api.linode.com/v4beta/linode/instances
method: POST
response:
- body: '{"id": 61342082, "label": "go-test-ins-8w21pl1h4n1x", "group": "", "status":
+ body: '{"id": 67701824, "label": "go-test-ins-4n57ej5b4bz0", "group": "", "status":
"provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["172.105.51.188"], "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":
- "d946738609b866787b882e81aabef414a072050a", "has_user_data": false, "placement_group":
- null, "lke_cluster_id": null}'
+ "type": "g6-nanode-1", "ipv4": ["172.105.63.112"], "ipv6": "1234::5678/128",
+ "image": "linode/debian12", "region": "ap-west", "site_type": "core", "specs":
+ {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
+ 0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
+ 80, "io": 10000}, "backups": {"enabled": false, "available": false, "schedule":
+ {"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm",
+ "watchdog_enabled": true, "tags": [], "host_uuid": "a9fcf0fa3f87c988e20199d64034bbae1870c1ee",
+ "has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
+ "lke_cluster_id": null, "capabilities": ["SMTP Enabled"]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -360,20 +378,19 @@ interactions:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
- Content-Length:
- - "790"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 20:01:29 GMT
+ - Thu, 28 Nov 2024 05:52:42 GMT
Pragma:
- no-cache
Strict-Transport-Security:
- max-age=31536000
Vary:
- Authorization, X-Filter
+ - Accept-Encoding
X-Accepted-Oauth-Scopes:
- linodes:read_write
X-Content-Type-Options:
@@ -384,7 +401,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "10"
+ - "8"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -400,10 +417,10 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61342082/configs
+ url: https://api.linode.com/v4beta/linode/instances/67701824/configs
method: POST
response:
- body: '{"id": 64561623, "label": "go-config-test-wait", "helpers": {"updatedb_disabled":
+ body: '{"id": 71037128, "label": "go-config-test-wait", "helpers": {"updatedb_disabled":
true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount":
true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created":
"2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda",
@@ -434,7 +451,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 20:01:29 GMT
+ - Thu, 28 Nov 2024 05:52:42 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -451,7 +468,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -467,7 +484,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/61342082
+ url: https://api.linode.com/v4beta/linode/instances/67701824
method: DELETE
response:
body: '{}'
@@ -495,7 +512,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 20:02:10 GMT
+ - Thu, 28 Nov 2024 05:53:25 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -512,7 +529,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
diff --git a/test/integration/fixtures/TestVolume_WaitForLinodeID_nil.yaml b/test/integration/fixtures/TestVolume_WaitForLinodeID_nil.yaml
index cc5d6cf4c..34fc6fcdb 100644
--- a/test/integration/fixtures/TestVolume_WaitForLinodeID_nil.yaml
+++ b/test/integration/fixtures/TestVolume_WaitForLinodeID_nil.yaml
@@ -15,264 +15,281 @@ interactions:
method: GET
response:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "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-ord", "label": "Chicago, IL", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
- Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
- "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
- 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
- "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
- "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.34.5,172.105.35.5,172.105.36.5,172.105.37.5,172.105.38.5,172.105.39.5,172.105.40.5,172.105.41.5,172.105.42.5,172.105.43.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.0.5,172.105.3.5,172.105.4.5,172.105.5.5,172.105.6.5,172.105.7.5,172.105.8.5,172.105.9.5,172.105.10.5,172.105.11.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.166.5,172.105.169.5,172.105.168.5,172.105.172.5,172.105.162.5,172.105.170.5,172.105.167.5,172.105.171.5,172.105.181.5,172.105.161.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-iad", "label": "Washington, DC", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "139.144.192.62,139.144.192.60,139.144.192.61,139.144.192.53,139.144.192.54,139.144.192.67,139.144.192.69,139.144.192.66,139.144.192.52,139.144.192.68",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17,172.232.0.16,172.232.0.21,172.232.0.13,172.232.0.22,172.232.0.9,172.232.0.19,172.232.0.20,172.232.0.15,172.232.0.18",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "fr-par", "label": "Paris, FR", "country":
+ "fr", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.32.21,172.232.32.23,172.232.32.17,172.232.32.18,172.232.32.16,172.232.32.22,172.232.32.20,172.232.32.14,172.232.32.11,172.232.32.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-sea", "label": "Seattle, WA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,172.232.160.21,172.232.160.17,172.232.160.15,172.232.160.18,172.232.160.8,172.232.160.12,172.232.160.11,172.232.160.14,172.232.160.16",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,172.233.0.9,172.233.0.7,172.233.0.12,172.233.0.5,172.233.0.13,172.233.0.10,172.233.0.6,172.233.0.8,172.233.0.11",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
- "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"],
- "status": "ok", "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20,
- 172.232.128.22, 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18,
- 172.232.128.21, 172.232.128.27", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25,
- 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18,
- 172.233.111.9", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20,
- 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
- 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
- "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
- 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
- "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32,
- 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
- "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
- 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
- "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
- 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
- "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
- "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
- 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
- "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
- "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
- 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
- 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": 100,
- "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
- "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.33.36,172.233.33.38,172.233.33.35,172.233.33.39,172.233.33.34,172.233.33.33,172.233.33.31,172.233.33.30,172.233.33.37,172.233.33.32",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.232.128.24,172.232.128.26,172.232.128.20,172.232.128.22,172.232.128.25,172.232.128.19,172.232.128.23,172.232.128.18,172.232.128.21,172.232.128.27",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,172.233.111.17,172.233.111.21,172.233.111.25,172.233.111.19,172.233.111.12,172.233.111.26,172.233.111.16,172.233.111.18,172.233.111.9",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.232.96.17,172.232.96.26,172.232.96.19,172.232.96.20,172.232.96.25,172.232.96.21,172.232.96.18,172.232.96.22,172.232.96.23,172.232.96.24",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.64.44,172.233.64.43,172.233.64.37,172.233.64.40,172.233.64.46,172.233.64.41,172.233.64.39,172.233.64.42,172.233.64.45,172.233.64.38",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "it-mil", "label": "Milan, IT", "country":
+ "it", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.192.19,172.232.192.18,172.232.192.16,172.232.192.20,172.232.192.24,172.232.192.21,172.232.192.22,172.232.192.17,172.232.192.15,172.232.192.23",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-mia", "label": "Miami, FL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.233.160.34,172.233.160.27,172.233.160.30,172.233.160.29,172.233.160.32,172.233.160.28,172.233.160.33,172.233.160.26,172.233.160.25,172.233.160.31",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "id-cgk", "label": "Jakarta, ID", "country":
+ "id", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.224.23,172.232.224.32,172.232.224.26,172.232.224.27,172.232.224.21,172.232.224.24,172.232.224.22,172.232.224.20,172.232.224.31,172.232.224.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-lax", "label": "Los Angeles, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.128.45,172.233.128.38,172.233.128.53,172.233.128.37,172.233.128.34,172.233.128.36,172.233.128.33,172.233.128.39,172.233.128.43,172.233.128.44",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "nz-akl-1", "label": "Auckland, NZ", "country":
+ "nz", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata", "Distributed
+ Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-den-1",
+ "label": "Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud Firewall",
+ "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4":
+ "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "de-ham-1", "label": "Hamburg, DE",
+ "country": "de", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata",
+ "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-1",
+ "label": "Marseille, FR", "country": "fr", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "za-jnb-1", "label": "Johannesburg,
+ ZA", "country": "za", "capabilities": ["Linodes", "Cloud Firewall", "Vlans",
+ "Metadata", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-1",
+ "label": "Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "mx-qro-1", "label": "Quer\u00e9taro,
+ MX", "country": "mx", "capabilities": ["Linodes", "Cloud Firewall", "Vlans",
+ "Metadata", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-1",
+ "label": "Houston, TX", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "cl-scl-1", "label": "Santiago, CL",
+ "country": "cl", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata",
+ "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "gb-lon",
+ "label": "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Block
+ Storage Encryption", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country":
+ "au", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-bom-2", "label": "Mumbai 2, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "de-fra-2", "label": "Frankfurt 2, DE", "country":
+ "de", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.203.9,172.236.203.16,172.236.203.19,172.236.203.15,172.236.203.17,172.236.203.11,172.236.203.18,172.236.203.14,172.236.203.13,172.236.203.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "sg-sin-2", "label": "Singapore 2, SG", "country":
+ "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-tyo-3", "label": "Tokyo 3, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "172.237.4.15,172.237.4.19,172.237.4.17,172.237.4.21,172.237.4.16,172.237.4.18,172.237.4.23,172.237.4.24,172.237.4.20,172.237.4.14",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-central", "label": "Dallas, TX", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5,72.14.188.5,173.255.199.5,66.228.53.5,96.126.122.5,96.126.124.5,96.126.127.5,198.58.107.5,198.58.111.5,23.239.24.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-west", "label": "Fremont, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
"Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
- Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
- 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
- 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5,
+ 173.230.147.5, 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5,
+ 173.255.244.5, 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": 100,
- "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
- "Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
- Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast",
+ "label": "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ", "country":
+ "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "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":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
- "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
- 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
- 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Metadata",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "178.79.182.5,
+ 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5,
+ 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
- "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.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",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.130.5,139.162.131.5,139.162.132.5,139.162.133.5,139.162.134.5,139.162.135.5,139.162.136.5,139.162.137.5,139.162.138.5,139.162.139.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-northeast", "label": "Tokyo 2, JP", "country":
+ "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
"Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
- "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.66.5,
- 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5, 139.162.71.5, 139.162.72.5,
- 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}], "page": 1, "pages":
- 1, "results": 27}'
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}], "page": 1, "pages": 1, "results": 40}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -295,7 +312,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 20:01:07 GMT
+ - Thu, 28 Nov 2024 05:52:20 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -314,7 +331,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -333,11 +350,11 @@ interactions:
url: https://api.linode.com/v4beta/volumes
method: POST
response:
- body: '{"id": 4979068, "status": "creating", "label": "go-vol-test-def", "created":
+ body: '{"id": 7301557, "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"}'
+ "nvme", "encryption": "disabled"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -356,13 +373,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "318"
+ - "344"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 20:01:07 GMT
+ - Thu, 28 Nov 2024 05:52:20 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -395,14 +412,14 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/volumes/4979068
+ url: https://api.linode.com/v4beta/volumes/7301557
method: GET
response:
- body: '{"id": 4979068, "status": "active", "label": "go-vol-test-def", "created":
+ body: '{"id": 7301557, "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"}'
+ "nvme", "encryption": "disabled"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -421,13 +438,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "316"
+ - "342"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 20:01:22 GMT
+ - Thu, 28 Nov 2024 05:52:35 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -445,7 +462,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -461,7 +478,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/volumes/4979068
+ url: https://api.linode.com/v4beta/volumes/7301557
method: DELETE
response:
body: '{}'
@@ -489,7 +506,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 20:01:28 GMT
+ - Thu, 28 Nov 2024 05:52:40 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -506,7 +523,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
diff --git a/test/integration/fixtures/TestVolume_WaitForLinodeID_volume.yaml b/test/integration/fixtures/TestVolume_WaitForLinodeID_volume.yaml
index a42dfdbf2..c90c6445e 100644
--- a/test/integration/fixtures/TestVolume_WaitForLinodeID_volume.yaml
+++ b/test/integration/fixtures/TestVolume_WaitForLinodeID_volume.yaml
@@ -15,264 +15,281 @@ interactions:
method: GET
response:
body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5,
- 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5,
- 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5,
- 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5,
- 172.105.11.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"],
- "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5,
- 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5,
- 172.105.161.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "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-ord", "label": "Chicago, IL", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU
- Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
- "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22,
- 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6":
- "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label":
- "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status":
- "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18,
- 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label":
- "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18,
- 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label":
- "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13,
- 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.34.5,172.105.35.5,172.105.36.5,172.105.37.5,172.105.38.5,172.105.39.5,172.105.40.5,172.105.41.5,172.105.42.5,172.105.43.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ca-central", "label": "Toronto, CA", "country":
+ "ca", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.0.5,172.105.3.5,172.105.4.5,172.105.5.5,172.105.6.5,172.105.7.5,172.105.8.5,172.105.9.5,172.105.10.5,172.105.11.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country":
+ "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "172.105.166.5,172.105.169.5,172.105.168.5,172.105.172.5,172.105.162.5,172.105.170.5,172.105.167.5,172.105.171.5,172.105.181.5,172.105.161.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-iad", "label": "Washington, DC", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "139.144.192.62,139.144.192.60,139.144.192.61,139.144.192.53,139.144.192.54,139.144.192.67,139.144.192.69,139.144.192.66,139.144.192.52,139.144.192.68",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.0.17,172.232.0.16,172.232.0.21,172.232.0.13,172.232.0.22,172.232.0.9,172.232.0.19,172.232.0.20,172.232.0.15,172.232.0.18",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "fr-par", "label": "Paris, FR", "country":
+ "fr", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.232.32.21,172.232.32.23,172.232.32.17,172.232.32.18,172.232.32.16,172.232.32.22,172.232.32.20,172.232.32.14,172.232.32.11,172.232.32.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-sea", "label": "Seattle, WA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,172.232.160.21,172.232.160.17,172.232.160.15,172.232.160.18,172.232.160.8,172.232.160.12,172.232.160.11,172.232.160.14,172.232.160.16",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country":
+ "br", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,172.233.0.9,172.233.0.7,172.233.0.12,172.233.0.5,172.233.0.13,172.233.0.10,172.233.0.6,172.233.0.8,172.233.0.11",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country":
- "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
- "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38,
- 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30,
- 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"],
- "status": "ok", "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20,
- 172.232.128.22, 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18,
- 172.232.128.21, 172.232.128.27", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25,
- 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18,
- 172.233.111.9", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
- "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok",
- "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20,
- 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label":
- "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46,
- 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label":
- "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24,
- 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label":
- "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers":
- {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32,
- 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label":
- "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21,
- 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label":
- "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans",
- "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4":
- "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34,
- 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label":
- "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata",
- "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50,
- 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51,
- 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers":
- {"ipv4": "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32,
- 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34",
- "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central",
- "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block
- Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status":
- "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5,
- 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5",
- "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits":
- {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type":
- "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities":
- ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud
- Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata",
- "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5,
- 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5,
- 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": 100,
- "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast", "label":
- "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.33.36,172.233.33.38,172.233.33.35,172.233.33.39,172.233.33.34,172.233.33.33,172.233.33.31,172.233.33.30,172.233.33.37,172.233.33.32",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country":
+ "se", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4":
+ "172.232.128.24,172.232.128.26,172.232.128.20,172.232.128.22,172.232.128.25,172.232.128.19,172.232.128.23,172.232.128.18,172.232.128.21,172.232.128.27",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country":
+ "es", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,172.233.111.17,172.233.111.21,172.233.111.25,172.233.111.19,172.233.111.12,172.233.111.26,172.233.111.16,172.233.111.18,172.233.111.9",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-maa", "label": "Chennai, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.232.96.17,172.232.96.26,172.232.96.19,172.232.96.20,172.232.96.25,172.232.96.21,172.232.96.18,172.232.96.22,172.232.96.23,172.232.96.24",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.233.64.44,172.233.64.43,172.233.64.37,172.233.64.40,172.233.64.46,172.233.64.41,172.233.64.39,172.233.64.42,172.233.64.45,172.233.64.38",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "it-mil", "label": "Milan, IT", "country":
+ "it", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.192.19,172.232.192.18,172.232.192.16,172.232.192.20,172.232.192.24,172.232.192.21,172.232.192.22,172.232.192.17,172.232.192.15,172.232.192.23",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-mia", "label": "Miami, FL", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium
+ Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok",
+ "resolvers": {"ipv4": "172.233.160.34,172.233.160.27,172.233.160.30,172.233.160.29,172.233.160.32,172.233.160.28,172.233.160.33,172.233.160.26,172.233.160.25,172.233.160.31",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "id-cgk", "label": "Jakarta, ID", "country":
+ "id", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.224.23,172.232.224.32,172.232.224.26,172.232.224.27,172.232.224.21,172.232.224.24,172.232.224.22,172.232.224.20,172.232.224.31,172.232.224.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-lax", "label": "Los Angeles, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.233.128.45,172.233.128.38,172.233.128.53,172.233.128.37,172.233.128.34,172.233.128.36,172.233.128.33,172.233.128.39,172.233.128.43,172.233.128.44",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "nz-akl-1", "label": "Auckland, NZ", "country":
+ "nz", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata", "Distributed
+ Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-den-1",
+ "label": "Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud Firewall",
+ "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4":
+ "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "de-ham-1", "label": "Hamburg, DE",
+ "country": "de", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata",
+ "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-1",
+ "label": "Marseille, FR", "country": "fr", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "za-jnb-1", "label": "Johannesburg,
+ ZA", "country": "za", "capabilities": ["Linodes", "Cloud Firewall", "Vlans",
+ "Metadata", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-1",
+ "label": "Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "mx-qro-1", "label": "Quer\u00e9taro,
+ MX", "country": "mx", "capabilities": ["Linodes", "Cloud Firewall", "Vlans",
+ "Metadata", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-1",
+ "label": "Houston, TX", "country": "us", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "distributed"}, {"id": "cl-scl-1", "label": "Santiago, CL",
+ "country": "cl", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata",
+ "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "gb-lon",
+ "label": "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Block
+ Storage Encryption", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
+ "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata",
+ "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers":
+ {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country":
+ "au", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement
+ Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "in-bom-2", "label": "Mumbai 2, IN", "country":
+ "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", "VPCs",
+ "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "de-fra-2", "label": "Frankfurt 2, DE", "country":
+ "de", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group",
+ "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4":
+ "172.236.203.9,172.236.203.16,172.236.203.19,172.236.203.15,172.236.203.17,172.236.203.11,172.236.203.18,172.236.203.14,172.236.203.13,172.236.203.12",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "sg-sin-2", "label": "Singapore 2, SG", "country":
+ "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud
+ Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "jp-tyo-3", "label": "Tokyo 3, JP", "country":
+ "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "172.237.4.15,172.237.4.19,172.237.4.17,172.237.4.21,172.237.4.16,172.237.4.18,172.237.4.23,172.237.4.24,172.237.4.20,172.237.4.14",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-central", "label": "Dallas, TX", "country":
+ "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "72.14.179.5,72.14.188.5,173.255.199.5,66.228.53.5,96.126.122.5,96.126.124.5,96.126.127.5,198.58.107.5,198.58.111.5,23.239.24.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-west", "label": "Fremont, CA", "country":
+ "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
"Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
- Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5,
- 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5,
- 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, 1234::5678, 1234::5678,
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5,
+ 173.230.147.5, 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5,
+ 173.255.244.5, 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": 100,
- "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label":
- "Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers",
- "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
- "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
- Group"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-southeast",
+ "label": "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed
+ Databases", "Metadata", "Placement Group", "StackScripts"], "status": "ok",
+ "resolvers": {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "us-east", "label": "Newark, NJ", "country":
+ "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "66.228.42.5, 96.126.106.5, 50.116.53.5,
50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, 97.107.133.4, 207.192.69.4,
207.192.69.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "placement_group_limits": {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg":
+ "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":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
- "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
- "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,
- 139.162.13.5, 139.162.14.5, 139.162.15.5, 139.162.16.5, 139.162.21.5, 139.162.27.5,
- 103.3.60.18, 103.3.60.19, 103.3.60.20", "ipv6": "1234::5678, 1234::5678,
+ "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Metadata",
+ "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "178.79.182.5,
+ 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5,
+ 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": "1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central",
- "label": "Frankfurt, DE", "country": "de", "capabilities": ["Linodes", "Backups",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south",
+ "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups",
"NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes",
- "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases",
- "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.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",
+ "Cloud Firewall", "Vlans", "Block Storage Migrations", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage",
+ "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block
+ Storage Migrations", "Managed Databases", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.130.5,139.162.131.5,139.162.132.5,139.162.133.5,139.162.134.5,139.162.135.5,139.162.136.5,139.162.137.5,139.162.138.5,139.162.139.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-northeast", "label": "Tokyo 2, JP", "country":
+ "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
"Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
- "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.66.5,
- 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5, 139.162.71.5, 139.162.72.5,
- 139.162.73.5, 139.162.74.5, 139.162.75.5", "ipv6": "1234::5678, 1234::5678,
- 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
- 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
- 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}], "page": 1, "pages":
- 1, "results": 27}'
+ "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
+ "ok", "resolvers": {"ipv4": "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.5",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}], "page": 1, "pages": 1, "results": 40}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -295,7 +312,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 20:01:29 GMT
+ - Thu, 28 Nov 2024 05:52:43 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -314,7 +331,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -333,11 +350,11 @@ interactions:
url: https://api.linode.com/v4beta/volumes
method: POST
response:
- body: '{"id": 4979073, "status": "creating", "label": "go-vol-test-def", "created":
+ body: '{"id": 7301562, "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"}'
+ "nvme", "encryption": "disabled"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -356,13 +373,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "318"
+ - "344"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 20:01:29 GMT
+ - Thu, 28 Nov 2024 05:52:43 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -386,7 +403,7 @@ interactions:
code: 200
duration: ""
- request:
- body: '{"linode_id":61342082,"config_id":64561623}'
+ body: '{"linode_id":67701824,"config_id":71037128}'
form: {}
headers:
Accept:
@@ -395,14 +412,14 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/volumes/4979073/attach
+ url: https://api.linode.com/v4beta/volumes/7301562/attach
method: POST
response:
- body: '{"id": 4979073, "status": "creating", "label": "go-vol-test-def", "created":
+ body: '{"id": 7301562, "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":
- 61342082, "linode_label": "go-test-ins-8w21pl1h4n1x", "region": "ap-west", "tags":
- [], "hardware_type": "nvme"}'
+ 67701824, "linode_label": "go-test-ins-4n57ej5b4bz0", "region": "ap-west", "tags":
+ [], "hardware_type": "nvme", "encryption": "disabled"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -421,13 +438,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "344"
+ - "370"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 20:01:29 GMT
+ - Thu, 28 Nov 2024 05:52:43 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -444,7 +461,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -460,14 +477,14 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/volumes/4979073
+ url: https://api.linode.com/v4beta/volumes/7301562
method: GET
response:
- body: '{"id": 4979073, "status": "active", "label": "go-vol-test-def", "created":
+ body: '{"id": 7301562, "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":
- 61342082, "linode_label": "go-test-ins-8w21pl1h4n1x", "region": "ap-west", "tags":
- [], "hardware_type": "nvme"}'
+ 67701824, "linode_label": "go-test-ins-4n57ej5b4bz0", "region": "ap-west", "tags":
+ [], "hardware_type": "nvme", "encryption": "disabled"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -486,13 +503,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "342"
+ - "368"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 20:01:44 GMT
+ - Thu, 28 Nov 2024 05:52:59 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -510,7 +527,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -526,7 +543,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/volumes/4979073
+ url: https://api.linode.com/v4beta/volumes/7301562
method: DELETE
response:
body: '{}'
@@ -554,7 +571,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 20:02:10 GMT
+ - Thu, 28 Nov 2024 05:53:24 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -571,7 +588,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
diff --git a/test/integration/fixtures/TestVolume_WaitForLinodeID_waiting.yaml b/test/integration/fixtures/TestVolume_WaitForLinodeID_waiting.yaml
index 1f46dac3e..9ca8f284c 100644
--- a/test/integration/fixtures/TestVolume_WaitForLinodeID_waiting.yaml
+++ b/test/integration/fixtures/TestVolume_WaitForLinodeID_waiting.yaml
@@ -11,14 +11,14 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/volumes/4979073
+ url: https://api.linode.com/v4beta/volumes/7301562
method: GET
response:
- body: '{"id": 4979073, "status": "active", "label": "go-vol-test-def", "created":
+ body: '{"id": 7301562, "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":
- 61342082, "linode_label": "go-test-ins-8w21pl1h4n1x", "region": "ap-west", "tags":
- [], "hardware_type": "nvme"}'
+ 67701824, "linode_label": "go-test-ins-4n57ej5b4bz0", "region": "ap-west", "tags":
+ [], "hardware_type": "nvme", "encryption": "disabled"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -37,13 +37,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "342"
+ - "368"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 20:02:05 GMT
+ - Thu, 28 Nov 2024 05:53:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -61,7 +61,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
diff --git a/test/integration/instance_reserved_ips_test.go b/test/integration/instance_reserved_ips_test.go
index 372c55703..423d3463d 100644
--- a/test/integration/instance_reserved_ips_test.go
+++ b/test/integration/instance_reserved_ips_test.go
@@ -453,3 +453,90 @@ func TestInstance_AddReservedIPToInstanceVariants(t *testing.T) {
t.Errorf("Expected error when omitting address field, but got none")
}
}
+
+func TestInstance_DeleteInstanceVariants(t *testing.T) {
+ client, teardown := createTestClient(t, "fixtures/TestInstance_DeleteInstanceVariants")
+ defer teardown()
+
+ // Create a Linode with a reserved IP
+ reservedIP, err := client.ReserveIPAddress(context.Background(), linodego.ReserveIPOptions{Region: "us-east"})
+ if err != nil {
+ t.Fatalf("Failed to reserve IP: %v", err)
+ }
+ t.Logf("Successfully reserved IP address")
+ defer func() {
+ err := client.DeleteReservedIPAddress(context.Background(), reservedIP.Address)
+ if err != nil {
+ t.Errorf("Failed to delete reserved IP: %v", err)
+ }
+ }()
+
+ instance, _, err := createInstanceWithReservedIP(t, client, reservedIP.Address)
+ if err != nil {
+ t.Fatalf("Error creating instance with reserved IP: %s", err)
+ }
+ t.Logf("Successfully created linode with reserved IP")
+
+ // Delete a Linode with a reserved IP
+ err = client.DeleteInstance(context.Background(), instance.ID)
+ if err != nil {
+ t.Fatalf("Failed to delete Linode with reserved IP: %v", err)
+ }
+ t.Logf("Successfully deleted linode!")
+
+ // Verify the reserved IP is retained after Linode deletion
+ retainedIP, err := client.GetReservedIPAddress(context.Background(), reservedIP.Address)
+ if err != nil {
+ t.Fatalf("Failed to get reserved IP after Linode deletion: %v", err)
+ }
+ if !retainedIP.Reserved || retainedIP.LinodeID != 0 {
+ t.Errorf("Reserved IP not retained correctly after Linode deletion")
+ }
+ t.Logf("Reserved IP retained after Linode deletion")
+
+ // Reassign the freed reserved IP to a new Linode
+ newInstance, err := client.CreateInstance(context.Background(), linodego.InstanceCreateOptions{
+ Region: "us-east",
+ Type: "g6-nanode-1",
+ Label: "test-instance-freed-ip",
+ RootPass: randPassword(),
+ IPv4: []string{reservedIP.Address},
+ })
+ if err != nil {
+ t.Fatalf("Failed to create new instance with freed reserved IP: %v", err)
+ }
+ t.Logf("Created instance with freed reserved IP with id = %d", newInstance.ID)
+
+ defer func() {
+ if err := client.DeleteInstance(context.Background(), newInstance.ID); err != nil {
+ t.Errorf("Error deleting new test Instance: %s", err)
+ }
+ }()
+
+ // Verify the IP is assigned to the new Linode
+ reassignedIP, err := client.GetReservedIPAddress(context.Background(), reservedIP.Address)
+ if err != nil {
+ t.Fatalf("Failed to get reassigned reserved IP: %v", err)
+ }
+ if reassignedIP.LinodeID == 0 || reassignedIP.LinodeID != newInstance.ID {
+ t.Errorf("Reserved IP not correctly reassigned to new Linode")
+ }
+ t.Logf("Reserved IP successfully reassigned to new Linode")
+
+ // PERMUTATION 4: Delete a Linode with an ephemeral IP
+ ephemeralInstance, err := client.CreateInstance(context.Background(), linodego.InstanceCreateOptions{
+ Region: "us-east",
+ Type: "g6-nanode-1",
+ Label: "ephemeral-ip-test",
+ RootPass: randPassword(),
+ })
+ if err != nil {
+ t.Fatalf("Failed to create Linode with ephemeral IP: %v", err)
+ }
+
+ err = client.DeleteInstance(context.Background(), ephemeralInstance.ID)
+ if err != nil {
+ t.Fatalf("Failed to delete Linode with ephemeral IP: %v", err)
+ }
+ t.Logf("Successfully deleted Linode with ephemeral IP")
+}
diff --git a/test/integration/instances_test.go b/test/integration/instances_test.go
index 97c06c68b..ac3ec828a 100644
--- a/test/integration/instances_test.go
+++ b/test/integration/instances_test.go
@@ -231,6 +231,109 @@ func TestInstance_Migrate(t *testing.T) {
}
}
+func TestInstance_MigrateToPG(t *testing.T) {
+ client, clientTeardown := createTestClient(t, "fixtures/TestInstance_MigrateToPG")
+
+ defer func() {
+ clientTeardown()
+ }()
+
+ regions := getRegionsWithCaps(t, client, []string{"Placement Group"})
+
+ pgOutboundCreateOpts := linodego.PlacementGroupCreateOptions{
+ Label: "linodego-test-" + getUniqueText(),
+ Region: regions[0],
+ PlacementGroupType: linodego.PlacementGroupTypeAntiAffinityLocal,
+ PlacementGroupPolicy: linodego.PlacementGroupPolicyFlexible,
+ }
+
+ pgOutbound, err := client.CreatePlacementGroup(context.Background(), pgOutboundCreateOpts)
+ if err != nil {
+ t.Fatalf("failed to create placement group: %s", err)
+ }
+
+ instanceCreateOpts := linodego.InstanceCreateOptions{
+ Label: "go-test-ins-" + randLabel(),
+ RootPass: randPassword(),
+ Region: regions[0],
+ Type: "g6-nanode-1",
+ Image: "linode/debian10",
+ Booted: linodego.Pointer(true),
+ PlacementGroup: &linodego.InstanceCreatePlacementGroupOptions{
+ ID: pgOutbound.ID,
+ },
+ }
+
+ instance, err := client.CreateInstance(context.Background(), instanceCreateOpts)
+ if err != nil {
+ t.Fatalf("failed to create instance: %s", err)
+ }
+
+ instance, err = client.WaitForInstanceStatus(
+ context.Background(),
+ instance.ID,
+ linodego.InstanceRunning,
+ 180,
+ )
+ if err != nil {
+ t.Errorf("Error waiting for instance readiness for migration: %s", err.Error())
+ }
+
+ pgInboundCreateOpts := linodego.PlacementGroupCreateOptions{
+ Label: "linodego-test-" + getUniqueText(),
+ Region: regions[1],
+ PlacementGroupType: linodego.PlacementGroupTypeAntiAffinityLocal,
+ PlacementGroupPolicy: linodego.PlacementGroupPolicyFlexible,
+ }
+
+ pgInbound, err := client.CreatePlacementGroup(context.Background(), pgInboundCreateOpts)
+ if err != nil {
+ t.Fatalf("failed to create placement group: %s", err)
+ }
+
+ upgrade := false
+
+ err = client.MigrateInstance(
+ context.Background(),
+ instance.ID,
+ linodego.InstanceMigrateOptions{
+ Type: "cold",
+ Region: regions[1],
+ Upgrade: &upgrade,
+ PlacementGroup: &linodego.InstanceCreatePlacementGroupOptions{ID: pgInbound.ID},
+ },
+ )
+ if err != nil {
+ t.Errorf("failed to migrate instance %d: %v", instance.ID, err.Error())
+ }
+
+ pgInboundRefreshed, err := client.GetPlacementGroup(context.Background(), pgInbound.ID)
+ if err != nil {
+ t.Fatalf("failed to get placement group: %s", err)
+ }
+
+ pgOutboundRefreshed, err := client.GetPlacementGroup(context.Background(), pgOutbound.ID)
+ if err != nil {
+ t.Fatalf("failed to get placement group: %s", err)
+ }
+
+ require.Equal(t, pgInboundRefreshed.ID, pgInbound.ID)
+ require.Equal(t, pgInboundRefreshed.Migrations.Inbound[0].LinodeID, instance.ID)
+ require.Equal(t, pgOutboundRefreshed.Migrations.Outbound[0].LinodeID, instance.ID)
+
+ if err := client.DeleteInstance(context.Background(), instance.ID); err != nil {
+ t.Errorf("failed to delete instance: %s", err)
+ }
+
+ if err := client.DeletePlacementGroup(context.Background(), pgInboundRefreshed.ID); err != nil {
+ t.Errorf("failed to delete placement group: %s", err)
+ }
+
+ if err := client.DeletePlacementGroup(context.Background(), pgOutboundRefreshed.ID); err != nil {
+ t.Errorf("failed to delete placement group: %s", err)
+ }
+}
+
func TestInstance_Disks_List(t *testing.T) {
client, instance, teardown, err := setupInstance(t, "fixtures/TestInstance_Disks_List", true)
defer teardown()
@@ -396,7 +499,7 @@ func TestInstance_Disk_Clone(t *testing.T) {
disk, err := client.CreateInstanceDisk(context.Background(), instance.ID, linodego.InstanceDiskCreateOptions{
Label: "go-disk-test-" + randLabel(),
Filesystem: "ext4",
- Image: "linode/debian9",
+ Image: "linode/debian10",
RootPass: randPassword(),
Size: 2000,
})
@@ -436,7 +539,7 @@ func TestInstance_Disk_ResetPassword(t *testing.T) {
disk, err := client.CreateInstanceDisk(context.Background(), instance.ID, linodego.InstanceDiskCreateOptions{
Label: "go-disk-test-" + randLabel(),
Filesystem: "ext4",
- Image: "linode/debian9",
+ Image: "linode/debian10",
RootPass: randPassword(),
Size: 2000,
})
@@ -473,7 +576,7 @@ func TestInstance_NodeBalancers_List(t *testing.T) {
t.Error(err)
}
- var linodeID = 0
+ linodeID := 0
for _, instanceIP := range instanceIPs {
if instanceIP.Address == privateIP {
@@ -804,7 +907,7 @@ func createInstance(t *testing.T, client *linodego.Client, enableCloudFirewall b
RootPass: randPassword(),
Region: getRegionsWithCaps(t, client, []string{"linodes"})[0],
Type: "g6-nanode-1",
- Image: "linode/debian9",
+ Image: "linode/debian12",
Booted: linodego.Pointer(false),
}
diff --git a/test/integration/lke_clusters_acl_test.go b/test/integration/lke_clusters_acl_test.go
index 6d85b74bf..f55ab0bb5 100644
--- a/test/integration/lke_clusters_acl_test.go
+++ b/test/integration/lke_clusters_acl_test.go
@@ -50,6 +50,7 @@ func TestLKECluster_withACL(t *testing.T) {
IPv4: &[]string{"10.0.0.2/32"},
IPv6: &[]string{},
},
+ RevisionID: "test-revision-id",
},
},
)
diff --git a/test/integration/lke_clusters_test.go b/test/integration/lke_clusters_test.go
index a419912aa..9490136c6 100644
--- a/test/integration/lke_clusters_test.go
+++ b/test/integration/lke_clusters_test.go
@@ -290,7 +290,7 @@ func setupLKECluster(t *testing.T, clusterModifiers []clusterModifier, fixturesY
createOpts := linodego.LKEClusterCreateOptions{
Label: label,
Region: getRegionsWithCaps(t, client, []string{"Kubernetes", "Disk Encryption"})[0],
- K8sVersion: "1.29",
+ K8sVersion: "1.31",
Tags: []string{"testing"},
NodePools: []linodego.LKENodePoolCreateOptions{{Count: 1, Type: "g6-standard-2", Tags: []string{"test"}}},
}
diff --git a/test/integration/network_ips_test.go b/test/integration/network_ips_test.go
index 06deac8a0..545b4a492 100644
--- a/test/integration/network_ips_test.go
+++ b/test/integration/network_ips_test.go
@@ -6,6 +6,9 @@ import (
"strings"
"testing"
+ "github.com/stretchr/testify/require"
+
+ "github.com/linode/linodego"
. "github.com/linode/linodego"
)
@@ -43,6 +46,33 @@ func TestIPAddress_GetFound_smoke(t *testing.T) {
if i.Address != address {
t.Errorf("Expected a specific ipaddress, but got a different one %v", i)
}
+
+ // Test for fetching reserved IP
+ // First, create a reserved IP
+ reservedIP, err := client.ReserveIPAddress(context.Background(), linodego.ReserveIPOptions{
+ Region: instance.Region,
+ })
+ if err != nil {
+ t.Fatalf("Failed to reserve IP: %v", err)
+ }
+ defer func() {
+ err := client.DeleteReservedIPAddress(context.Background(), reservedIP.Address)
+ if err != nil {
+ t.Errorf("Failed to delete reserved IP: %v", err)
+ }
+ }()
+
+ // Now get the reserved IP
+ newReservedIP, err := client.GetIPAddress(context.Background(), reservedIP.Address)
+ if err != nil {
+ t.Fatalf("Error getting reserved IP address: %v", err)
+ }
+ if newReservedIP.Address != reservedIP.Address {
+ t.Errorf("Expected IP address %s, but got %s", reservedIP.Address, i.Address)
+ }
+ if !newReservedIP.Reserved {
+ t.Errorf("Expected reserved IP to have Reserved=true, but got false")
+ }
}
func TestIPAddresses_List_smoke(t *testing.T) {
@@ -68,8 +98,8 @@ func TestIPAddresses_List_smoke(t *testing.T) {
}
rdns := fmt.Sprintf("%s.nip.io", ip.Address)
- _, err = client.UpdateIPAddress(context.Background(), ip.Address, IPAddressUpdateOptions{
- RDNS: &rdns,
+ _, err = client.UpdateIPAddressV2(context.Background(), ip.Address, IPAddressUpdateOptionsV2{
+ RDNS: linodego.Pointer(linodego.Pointer(rdns)),
})
if err != nil {
t.Fatalf("Failed to set RDNS for IPv6 address: %v", err)
@@ -92,6 +122,38 @@ func TestIPAddresses_List_smoke(t *testing.T) {
t.Fatalf("expected empty rdns for ipv6 address; got %s", ip.RDNS)
}
}
+
+ reservedFilter := "{\"reserved\":true}"
+ reservedIpAddresses, err := client.ListIPAddresses(context.Background(), NewListOptions(0, reservedFilter))
+ if err != nil {
+ t.Errorf("Error listing ipaddresses, expected struct, got error %v", err)
+ }
+ if len(i) == 0 {
+ t.Errorf("Expected a list of ipaddresses, but got none %v", reservedIpAddresses)
+ }
+
+ // Verify that all IPs in the reserved list are actually reserved
+ for _, ip := range reservedIpAddresses {
+ if !ip.Reserved {
+ t.Errorf("IP %s is in the reserved list but has Reserved field set to false", ip.Address)
+ }
+ }
+
+ unreservedFilter := "{\"reserved\":false}"
+ unreservedIpAddresses, err := client.ListIPAddresses(context.Background(), NewListOptions(0, unreservedFilter))
+ if err != nil {
+ t.Errorf("Error listing ipaddresses, expected struct, got error %v", err)
+ }
+ if len(i) == 0 {
+ t.Errorf("Expected a list of ipaddresses, but got none %v", unreservedIpAddresses)
+ }
+
+ // Verify that all IPs in the reserved list are actually unreserved
+ for _, ip := range unreservedIpAddresses {
+ if ip.Reserved {
+ t.Errorf("IP %s is in the non-reserved list but has Reserved field set to true", ip.Address)
+ }
+ }
}
func TestIPAddresses_Instance_Get(t *testing.T) {
@@ -117,20 +179,194 @@ func TestIPAddress_Update(t *testing.T) {
t.Error(err)
}
+ reservedTrue := true
+ reservedFalse := false
+
address := instance.IPv4[0].String()
+
i, err := client.GetInstanceIPAddresses(context.Background(), instance.ID)
if err != nil {
t.Errorf("Error getting ipaddress: %s", err)
}
- rdns := i.IPv4.Public[0].RDNS
- updateOpts := IPAddressUpdateOptions{
- RDNS: &rdns,
+ originalRDNS := i.IPv4.Public[0].RDNS
+
+ // Update RDNS to nip.io
+ updateOpts := IPAddressUpdateOptionsV2{
+ RDNS: linodego.Pointer(linodego.Pointer(fmt.Sprintf("%s.nip.io", i.IPv4.Public[0].Address))),
+ }
+
+ ip, err := client.UpdateIPAddressV2(context.Background(), address, updateOpts)
+ require.NoError(t, err)
+
+ // Update RDNS to default
+ updateOpts = IPAddressUpdateOptionsV2{
+ RDNS: linodego.Pointer[*string](nil),
}
+ ip, err = client.UpdateIPAddressV2(context.Background(), ip.Address, updateOpts)
+ require.NoError(t, err)
- _, err = client.UpdateIPAddress(context.Background(), address, updateOpts)
+ require.NotNil(t, ip)
+ require.Equal(t, originalRDNS, ip.RDNS)
+
+ createReservedIP := func() (string, error) {
+ reservedIP, err := client.ReserveIPAddress(context.Background(), linodego.ReserveIPOptions{Region: instance.Region})
+ if err != nil {
+ return "", err
+ }
+ return reservedIP.Address, nil
+ }
+
+ // Scenario 1: Convert ephemeral IP to reserved IP
+
+ ephemeralIP := instance.IPv4[0].String()
+ updateOpts = IPAddressUpdateOptionsV2{
+ Reserved: &reservedTrue,
+ }
+ updatedIP, err := client.UpdateIPAddressV2(context.Background(), ephemeralIP, updateOpts)
if err != nil {
- t.Error(err)
+ t.Fatalf("Failed to convert ephemeral IP to reserved: %v", err)
+ }
+ if !updatedIP.Reserved {
+ t.Errorf("Expected IP to be reserved, but it's not")
+ }
+
+ // Scenario 2: Convert reserved IP to reserved IP (no-op)
+
+ reservedIP, err := createReservedIP()
+ if err != nil {
+ t.Fatalf("Failed to create reserved IP: %v", err)
+ }
+ defer client.DeleteReservedIPAddress(context.Background(), reservedIP)
+
+ updateOpts = IPAddressUpdateOptionsV2{
+ Reserved: &reservedTrue,
+ }
+ updatedIP, err = client.UpdateIPAddressV2(context.Background(), reservedIP, updateOpts)
+ if err != nil {
+ t.Fatalf("Failed to update reserved IP: %v", err)
+ }
+ if !updatedIP.Reserved {
+ t.Errorf("Expected IP to remain reserved, but it's not")
+ }
+
+ // Scenario 3: Convert reserved to ephemeral
+
+ ephemeralIP = instance.IPv4[0].String()
+ updateOpts = IPAddressUpdateOptionsV2{
+ Reserved: &reservedFalse,
+ }
+ updatedIP, err = client.UpdateIPAddressV2(context.Background(), ephemeralIP, updateOpts)
+ if err != nil {
+ t.Fatalf("Failed to update ephemeral IP: %v", err)
+ }
+ if updatedIP.Reserved {
+ t.Errorf("Expected IP to remain ephemeral, but it's reserved")
+ }
+
+ // Scenario 4: Convert assigned reserved IP to ephemeral
+ reservedIP, err = createReservedIP()
+ if err != nil {
+ t.Fatalf("Failed to create reserved IP: %v", err)
+ }
+ defer client.DeleteReservedIPAddress(context.Background(), reservedIP)
+
+ // Assign the reserved IP to the instance
+ assignOpts := LinodesAssignIPsOptions{
+ Region: instance.Region,
+ Assignments: []LinodeIPAssignment{
+ {
+ Address: reservedIP,
+ LinodeID: instance.ID,
+ },
+ },
+ }
+ err = client.InstancesAssignIPs(context.Background(), assignOpts)
+ if err != nil {
+ t.Fatalf("Failed to assign reserved IP: %v", err)
+ }
+
+ updateOpts = IPAddressUpdateOptionsV2{
+ Reserved: &reservedFalse,
+ }
+ updatedIP, err = client.UpdateIPAddressV2(context.Background(), reservedIP, updateOpts)
+ if err != nil {
+ t.Fatalf("Failed to convert assigned reserved IP to ephemeral: %v", err)
+ }
+ if updatedIP.Reserved {
+ t.Errorf("Expected IP to be converted to ephemeral, but it's still reserved")
+ }
+
+ // Scenario 5: Cannot set RDNS for unassigned reserved IP
+
+ unassignedResIP, unassignedResIpErr := createReservedIP()
+ if unassignedResIpErr != nil {
+ t.Fatalf("Failed to create reserved IP: %v", unassignedResIpErr)
+ }
+
+ updateOpts = IPAddressUpdateOptionsV2{
+ Reserved: &reservedTrue,
+ RDNS: linodego.Pointer(linodego.Pointer("sample rdns")),
+ }
+ _, err = client.UpdateIPAddressV2(context.Background(), unassignedResIP, updateOpts)
+ if err == nil {
+ t.Fatalf("Expected error when setting RDNS for unassigned reserved IP, but got none")
+ }
+
+ client.DeleteReservedIPAddress(context.Background(), unassignedResIP)
+
+ // Scenario 6: Convert unassigned reserved IP to reserved (no-op)
+
+ reservedIP, err = createReservedIP()
+ if err != nil {
+ t.Fatalf("Failed to create reserved IP: %v", err)
+ }
+
+ updateOpts = IPAddressUpdateOptionsV2{
+ Reserved: &reservedTrue,
+ }
+ updatedIP, err = client.UpdateIPAddressV2(context.Background(), reservedIP, updateOpts)
+ if err != nil {
+ t.Fatalf("Failed to update unassigned reserved IP: %v", err)
+ }
+ if !updatedIP.Reserved || updatedIP.LinodeID != 0 {
+ t.Errorf("Expected IP to remain unassigned reserved, but got: %+v", updatedIP)
+ }
+
+ client.DeleteReservedIPAddress(context.Background(), reservedIP)
+
+ // Scenario 7: Convert unassigned reserved IP to unassigned (delete)
+
+ reservedIP, err = createReservedIP()
+ if err != nil {
+ t.Fatalf("Failed to create reserved IP: %v", err)
+ }
+
+ updateOpts = IPAddressUpdateOptionsV2{
+ Reserved: &reservedFalse,
+ }
+ _, err = client.UpdateIPAddressV2(context.Background(), reservedIP, updateOpts)
+ if err != nil {
+ t.Fatalf("Failed to convert unassigned reserved IP to unassigned: %v", err)
+ }
+
+ // Verify the IP has been deleted
+ _, err = client.GetIPAddress(context.Background(), reservedIP)
+ if err == nil {
+ t.Errorf("Expected IP to be deleted, but it still exists")
+ }
+
+ // Scenario 10: Cannot convert non-owned reserved IP
+
+ invalidResIp := "123.72.121.76"
+
+ updateOpts = IPAddressUpdateOptionsV2{
+ Reserved: &reservedFalse,
+ }
+
+ updatedIP, err = client.UpdateIPAddressV2(context.Background(), invalidResIp, updateOpts)
+ if err == nil {
+ t.Fatalf("Expected error indicating the IP address is invalid, got nil")
}
}
@@ -281,3 +517,360 @@ func TestIPAddress_Instance_Share(t *testing.T) {
t.Errorf("failed to find assigned ip")
}
+
+func TestIPAddress_Instance_Allocate(t *testing.T) {
+ client, instance, _, teardown, err := setupInstanceWithoutDisks(t, "fixtures/TestIPAddress_Instance_Allocate", true)
+ defer teardown()
+ if err != nil {
+ t.Fatal(err)
+ }
+
+ // Scenario 1: Valid request
+
+ opts := AllocateReserveIPOptions{
+ Type: "ipv4",
+ Public: true,
+ Reserved: true,
+ Region: instance.Region,
+ LinodeID: instance.ID,
+ }
+ validIp, err := client.AllocateReserveIP(context.Background(), opts)
+ // defer cleanUpIPAllocation(t, client, validIp.Address)
+ if err != nil {
+ t.Fatalf("Expected successful IP reservation, got error: %v", err)
+ }
+ if !validIp.Reserved || validIp.LinodeID != instance.ID {
+ t.Errorf("Unexpected IP reservation result: %+v", validIp)
+ }
+
+ // Scenario 2: Non-owned Linode
+ nonOwnedLinodeOpts := AllocateReserveIPOptions{
+ Type: "ipv4",
+ Public: true,
+ Reserved: true,
+ Region: instance.Region,
+ LinodeID: 99999, // Assume this is a non-owned Linode ID
+ }
+ _, nonOwnedLinodeErr := client.AllocateReserveIP(context.Background(), nonOwnedLinodeOpts)
+ if nonOwnedLinodeErr == nil {
+ t.Fatal("Expected error for non-owned Linode, got nil")
+ }
+
+ // Scenario 3: Omit Linode ID
+
+ omitLinodeIDOpts := AllocateReserveIPOptions{
+ Type: "ipv4",
+ Public: true,
+ Reserved: true,
+ Region: instance.Region,
+ }
+ omitLinodeIDip, omitLinodeErr := client.AllocateReserveIP(context.Background(), omitLinodeIDOpts)
+ if omitLinodeErr != nil {
+ t.Fatalf("Expected successful unassigned IP reservation, got error: %v", omitLinodeErr)
+ }
+ if !omitLinodeIDip.Reserved || omitLinodeIDip.LinodeID != 0 || omitLinodeIDip.Region != instance.Region {
+ t.Errorf("Unexpected unassigned IP reservation result: %+v", omitLinodeIDip)
+ }
+
+ // Scenario 4: Omit Region
+
+ omitRegionOpts := AllocateReserveIPOptions{
+ Type: "ipv4",
+ Public: true,
+ Reserved: true,
+ LinodeID: instance.ID,
+ }
+ omitRegionip, omitRegionErr := client.AllocateReserveIP(context.Background(), omitRegionOpts)
+ // defer cleanUpIPAllocation(t, client, omitRegionip.Address)
+ if omitRegionErr != nil {
+ t.Fatalf("Expected successful IP reservation without region, got error: %v", omitRegionErr)
+ }
+ if !omitRegionip.Reserved || omitRegionip.LinodeID != instance.ID {
+ t.Errorf("Unexpected IP reservation result without region: %+v", omitRegionip)
+ }
+
+ cleanUpReserveIPAllocation(t, client, omitRegionip.Address)
+
+ // Scenario 5: Omit both Region and Linode ID
+
+ omitRegionAndLinodeIDopts := AllocateReserveIPOptions{
+ Type: "ipv4",
+ Public: true,
+ Reserved: true,
+ }
+ _, omitRegionAndLinodeIDerr := client.AllocateReserveIP(context.Background(), omitRegionAndLinodeIDopts)
+
+ if omitRegionAndLinodeIDerr == nil {
+ t.Fatal("Expected error when omitting both region and Linode ID, got nil")
+ }
+
+ // Scenario 6: Reserved true, Public false
+
+ publicFalseOpts := AllocateReserveIPOptions{
+ Type: "ipv4",
+ Public: false,
+ Reserved: true,
+ Region: instance.Region,
+ LinodeID: instance.ID,
+ }
+ _, publicFalseErr := client.AllocateReserveIP(context.Background(), publicFalseOpts)
+ if publicFalseErr == nil {
+ t.Fatal("Expected error for reserved true and public false, got nil")
+ }
+
+ // Scenario 7: Reserved false
+
+ reservedFalseOpts := AllocateReserveIPOptions{
+ Type: "ipv4",
+ Public: true,
+ Reserved: false,
+ Region: instance.Region,
+ LinodeID: instance.ID,
+ }
+ reservedFalseIp, reservedFalseErr := client.AllocateReserveIP(context.Background(), reservedFalseOpts)
+ if reservedFalseErr != nil {
+ t.Fatalf("Expected successful ephemeral IP assignment, got error: %v", reservedFalseErr)
+ }
+ if reservedFalseIp.Reserved || reservedFalseIp.LinodeID != instance.ID {
+ t.Errorf("Unexpected ephemeral IP assignment result: %+v", reservedFalseIp)
+ }
+
+ cleanUpIPAllocation(t, client, instance.ID, reservedFalseIp.Address)
+
+ // Scenario 8: Omit Reserved field
+
+ omitReservedOpts := AllocateReserveIPOptions{
+ Type: "ipv4",
+ Public: true,
+ Region: instance.Region,
+ LinodeID: instance.ID,
+ }
+ omitReservedip, omitReservedErr := client.AllocateReserveIP(context.Background(), omitReservedOpts)
+ if omitReservedErr != nil {
+ t.Fatalf("Expected successful IP assignment, got error: %v", omitReservedErr)
+ }
+ if omitReservedip.Reserved || omitReservedip.LinodeID != instance.ID {
+ t.Errorf("Unexpected IP assignment result: %+v", omitReservedip)
+ }
+
+ cleanUpIPAllocation(t, client, instance.ID, omitReservedip.Address)
+
+ // Scenario 9: Omit Linode ID, Reserved false
+
+ omitOpts := AllocateReserveIPOptions{
+ Type: "ipv4",
+ Public: true,
+ Reserved: false,
+ Region: instance.Region,
+ }
+ _, omitOptsErr := client.AllocateReserveIP(context.Background(), omitOpts)
+ if omitOptsErr == nil {
+ t.Fatal("Expected error when omitting Linode ID and setting reserved to false, got nil")
+ }
+
+ // Scenario 10: Omit Linode ID and Reserved fields
+
+ omitIDResopts := AllocateReserveIPOptions{
+ Type: "ipv4",
+ Public: true,
+ Region: instance.Region,
+ }
+ _, omitIDResErr := client.AllocateReserveIP(context.Background(), omitIDResopts)
+ if omitIDResErr == nil {
+ t.Fatal("Expected error when omitting Linode ID and reserved fields, got nil")
+ }
+
+ // Scenario 11: Reserved true, Type IPv6
+
+ typeIPv6opts := AllocateReserveIPOptions{
+ Type: "ipv6",
+ Public: true,
+ Reserved: true,
+ Region: instance.Region,
+ LinodeID: instance.ID,
+ }
+ _, typeIPv6Err := client.AllocateReserveIP(context.Background(), typeIPv6opts)
+ if typeIPv6Err == nil {
+ t.Fatal("Expected error for reserved true and type IPv6, got nil")
+ }
+
+ // Scenario 12: Reserved false, Type IPv6
+
+ resFalseIPv6opts := AllocateReserveIPOptions{
+ Type: "ipv6",
+ Public: true,
+ Reserved: false,
+ Region: instance.Region,
+ LinodeID: instance.ID,
+ }
+ _, resFalseIPv6Err := client.AllocateReserveIP(context.Background(), resFalseIPv6opts)
+ if resFalseIPv6Err == nil {
+ t.Fatalf("Expected unsuccessful IPv6 assignment, got nil")
+ }
+
+ // Scenario 13: Region mismatch
+
+ regionMismatchOpts := AllocateReserveIPOptions{
+ Type: "ipv4",
+ Public: true,
+ Reserved: true,
+ Region: "us-west", // Assume this is different from instance.Region
+ LinodeID: instance.ID,
+ }
+ _, regionMismatchErr := client.AllocateReserveIP(context.Background(), regionMismatchOpts)
+ if regionMismatchErr == nil {
+ t.Fatal("Expected error for region mismatch, got nil")
+ }
+}
+
+func cleanUpReserveIPAllocation(t *testing.T, client *linodego.Client, address string) {
+ err := client.DeleteReservedIPAddress(context.Background(), address)
+ if err != nil {
+ t.Logf("Failed to delete reserved IP %s: %v", address, err)
+ }
+}
+
+func cleanUpIPAllocation(t *testing.T, client *linodego.Client, linodeID int, address string) {
+ err := client.DeleteInstanceIPAddress(context.Background(), linodeID, address)
+ if err != nil {
+ t.Logf("Failed to delete reserved IP %s: %v", address, err)
+ }
+}
+
+func TestIPAddress_Instance_ReserveIP_Assign(t *testing.T) {
+ client, teardown := createTestClient(t, "fixtures/TestIPAddress_Instance_ReserveIP_Assign")
+ defer teardown()
+
+ // Create two Linodes for testing
+ linode1, err := createInstance(t, client, true)
+ if err != nil {
+ t.Fatalf("Error creating first test Linode: %s", err)
+ }
+ defer func() {
+ if err := client.DeleteInstance(context.Background(), linode1.ID); err != nil {
+ t.Errorf("Error deleting first test Linode: %s", err)
+ }
+ }()
+
+ linode2, err := createInstance(t, client, true)
+ if err != nil {
+ t.Fatalf("Error creating second test Linode: %s", err)
+ }
+ defer func() {
+ if err := client.DeleteInstance(context.Background(), linode2.ID); err != nil {
+ t.Errorf("Error deleting second test Linode: %s", err)
+ }
+ }()
+
+ // Scenario 1: Assign unassigned reserved IP to existing Linode
+
+ reservedIP, err := client.ReserveIPAddress(context.Background(), linodego.ReserveIPOptions{Region: linode1.Region})
+ if err != nil {
+ t.Fatalf("Failed to reserve IP: %v", err)
+ }
+ defer cleanUpReserveIPAllocation(t, client, reservedIP.Address)
+
+ err = client.InstancesAssignIPs(context.Background(), LinodesAssignIPsOptions{
+ Region: linode1.Region,
+ Assignments: []LinodeIPAssignment{
+ {
+ Address: reservedIP.Address,
+ LinodeID: linode1.ID,
+ },
+ },
+ })
+ if err != nil {
+ t.Fatalf("Failed to assign reserved IP: %v", err)
+ }
+
+ // Verify assignment
+ ip, err := client.GetIPAddress(context.Background(), reservedIP.Address)
+ if err != nil {
+ t.Fatalf("Failed to get IP address info: %v", err)
+ }
+ if !ip.Reserved || ip.LinodeID != linode1.ID {
+ t.Errorf("Unexpected IP assignment result: %+v", ip)
+ }
+
+ // Scenario 2: Reassign reserved IP to different Linode
+
+ reassignIP, reassignIPerr := client.ReserveIPAddress(context.Background(), linodego.ReserveIPOptions{Region: linode1.Region})
+ if reassignIPerr != nil {
+ t.Fatalf("Failed to reserve IP: %v", err)
+ }
+
+ // Assign to first Linode
+ assignErr := client.InstancesAssignIPs(context.Background(), LinodesAssignIPsOptions{
+ Region: linode1.Region,
+ Assignments: []LinodeIPAssignment{
+ {
+ Address: reassignIP.Address,
+ LinodeID: linode1.ID,
+ },
+ },
+ })
+ if assignErr != nil {
+ t.Fatalf("Failed to assign reserved IP to first Linode: %v", assignErr)
+ }
+
+ // Reassign to second Linode
+ reassignErr := client.InstancesAssignIPs(context.Background(), LinodesAssignIPsOptions{
+ Region: linode2.Region,
+ Assignments: []LinodeIPAssignment{
+ {
+ Address: reassignIP.Address,
+ LinodeID: linode2.ID,
+ },
+ },
+ })
+ if reassignErr != nil {
+ t.Fatalf("Failed to reassign reserved IP: %v", reassignErr)
+ }
+
+ // Verify reassignment
+ ipAddress, getIpErr := client.GetIPAddress(context.Background(), reassignIP.Address)
+ if getIpErr != nil {
+ t.Fatalf("Failed to get IP address info: %v", getIpErr)
+ }
+ if !ipAddress.Reserved || ipAddress.LinodeID != linode2.ID {
+ t.Errorf("Unexpected IP reassignment result: %+v", ipAddress)
+ }
+
+ cleanUpReserveIPAllocation(t, client, reassignIP.Address)
+
+ // Scenario 3: Attempt to assign non-owned reserved IP
+
+ invalidIpErr := client.InstancesAssignIPs(context.Background(), LinodesAssignIPsOptions{
+ Region: linode1.Region,
+ Assignments: []LinodeIPAssignment{
+ {
+ Address: "192.0.2.1", // Assume this is a non-owned IP
+ LinodeID: linode1.ID,
+ },
+ },
+ })
+ if invalidIpErr == nil {
+ t.Fatal("Expected error when assigning non-owned reserved IP, got nil")
+ }
+
+ // Scenario 4: Attempt to assign owned reserved IP to non-owned Linode
+
+ validResIP, validResIPerr := client.ReserveIPAddress(context.Background(), linodego.ReserveIPOptions{Region: linode1.Region})
+ if validResIPerr != nil {
+ t.Fatalf("Failed to reserve IP: %v", validResIPerr)
+ }
+ defer cleanUpReserveIPAllocation(t, client, validResIP.Address)
+
+ invalidLinodeErr := client.InstancesAssignIPs(context.Background(), LinodesAssignIPsOptions{
+ Region: linode1.Region,
+ Assignments: []LinodeIPAssignment{
+ {
+ Address: validResIP.Address,
+ LinodeID: 99999, // Assume this is a non-owned Linode ID
+ },
+ },
+ })
+ if invalidLinodeErr == nil {
+ t.Fatal("Expected error when assigning to non-owned Linode, got nil")
+ }
+}
diff --git a/test/integration/network_reserved_ips_test.go b/test/integration/network_reserved_ips_test.go
index 81b991182..c261a0ba3 100644
--- a/test/integration/network_reserved_ips_test.go
+++ b/test/integration/network_reserved_ips_test.go
@@ -387,3 +387,76 @@ func TestReservedIPAddresses_DeleteIPAddressVariants(t *testing.T) {
t.Errorf("Expected error when deleting unowned IP, got nil")
}
}
+
+func TestReservedIPAddresses_GetIPReservationStatus(t *testing.T) {
+ client, teardown := createTestClient(t, "TestReservedIPAddresses_GetInstanceIPReservationStatus")
+ defer teardown()
+
+ // Create a Linode with a reserved IP
+ reservedIP, err := client.ReserveIPAddress(context.Background(), linodego.ReserveIPOptions{Region: "us-east"})
+ if err != nil {
+ t.Fatalf("Failed to reserve IP: %v", err)
+ }
+ defer func() {
+ err := client.DeleteReservedIPAddress(context.Background(), reservedIP.Address)
+ if err != nil {
+ t.Errorf("Failed to delete reserved IP: %v", err)
+ }
+ }()
+
+ instanceWithReservedIP, instanceTeardown, err := createInstanceWithReservedIP(t, client, reservedIP.Address)
+ if err != nil {
+ t.Fatalf("Error creating instance with reserved IP: %s", err)
+ }
+ defer instanceTeardown()
+
+ // Make GET request for the Linode with reserved IP
+ instanceAddresses, err := client.GetInstanceIPAddresses(context.Background(), instanceWithReservedIP.ID)
+ if err != nil {
+ t.Fatalf("Failed to get instance info for Linode with reserved IP: %v", err)
+ }
+
+ // Check if the 'reserved' field is set to true
+ foundReserved := false
+ for _, ip := range instanceAddresses.IPv4.Public {
+ if ip.Address == reservedIP.Address {
+ if !ip.Reserved {
+ t.Errorf("Expected 'Reserved' field to be true for reserved IP %s, but it was false", ip.Address)
+ }
+ foundReserved = true
+ break
+ }
+ }
+ if !foundReserved {
+ t.Errorf("Reserved IP %s not found in instance's public IP addresses", reservedIP.Address)
+ }
+
+ // Create a Linode with an ephemeral IP
+ instanceWithEphemeralIP, err := client.CreateInstance(context.Background(), linodego.InstanceCreateOptions{
+ Region: "us-east",
+ Type: "g6-nanode-1",
+ Label: "test-instance-ephemeral-ip",
+ RootPass: randPassword(),
+ })
+ if err != nil {
+ t.Fatalf("Failed to create Linode with ephemeral IP: %v", err)
+ }
+ defer func() {
+ if err := client.DeleteInstance(context.Background(), instanceWithEphemeralIP.ID); err != nil {
+ t.Errorf("Error deleting test Instance with ephemeral IP: %s", err)
+ }
+ }()
+
+ // Make GET request for the Linode with ephemeral IP
+ ephemeralInstanceAddresses, err := client.GetInstanceIPAddresses(context.Background(), instanceWithEphemeralIP.ID)
+ if err != nil {
+ t.Fatalf("Failed to get instance IP addresses for Linode with ephemeral IP: %v", err)
+ }
+
+ // Check that all public IPs have 'Reserved' field set to false
+ for _, ip := range ephemeralInstanceAddresses.IPv4.Public {
+ if ip.Reserved {
+ t.Errorf("Expected 'Reserved' field to be false for ephemeral IP %s, but it was true", ip.Address)
+ }
+ }
+}
diff --git a/test/integration/object_storage_object_test.go b/test/integration/object_storage_object_test.go
index 9bd2b5ef8..90788464d 100644
--- a/test/integration/object_storage_object_test.go
+++ b/test/integration/object_storage_object_test.go
@@ -73,8 +73,8 @@ func deleteObjectStorageObject(t *testing.T, client *linodego.Client, bucket *li
}
}
-func TestObjectStorageObject_ACLConfig_Update(t *testing.T) {
- client, bucket, teardown, err := setupObjectStorageBucket(t, nil, "fixtures/TestObjectStorageObject_ACLConfig_Update", nil, nil)
+func TestObjectStorageObject_Smoke(t *testing.T) {
+ client, bucket, teardown, err := setupObjectStorageBucket(t, nil, "fixtures/TestObjectStorageObject_Smoke", nil, nil)
if err != nil {
t.Fatalf("failed to create Object Storage Object: %s", err)
}
@@ -96,6 +96,15 @@ func TestObjectStorageObject_ACLConfig_Update(t *testing.T) {
t.Error("expected ACL XML to be included")
}
+ content, err := client.ListObjectStorageBucketContents(context.TODO(), bucket.Cluster, bucket.Label, nil)
+ if err != nil {
+ t.Errorf("failed to get bucket contents: %s", err)
+ }
+
+ if content.Data[0].Name != object {
+ t.Errorf("ObjectStorageBucket contents name does not match, expected %s, got %s", "test", content.Data[0].Name)
+ }
+
updateOpts := linodego.ObjectStorageObjectACLConfigUpdateOptions{ACL: "public-read", Name: object}
if _, err = client.UpdateObjectStorageObjectACLConfig(context.TODO(), bucket.Cluster, bucket.Label, updateOpts); err != nil {
t.Errorf("failed to update ACL config: %s", err)
diff --git a/test/integration/volumes_test.go b/test/integration/volumes_test.go
index 9a1dfb0bb..0060dfe7c 100644
--- a/test/integration/volumes_test.go
+++ b/test/integration/volumes_test.go
@@ -215,10 +215,13 @@ func TestVolume_WaitForLinodeID(t *testing.T) {
client, teardownWait := createTestClient(t, "fixtures/TestVolume_WaitForLinodeID_waiting")
defer teardownWait()
- _, errWait = client.WaitForVolumeLinodeID(context.Background(), volume.ID, &instance.ID, 20)
+ v, errWait := client.WaitForVolumeLinodeID(context.Background(), volume.ID, &instance.ID, 20)
if errWait != nil {
t.Errorf("Error waiting for volume %d to attach to instance %d: %s", volume.ID, instance.ID, errWait)
}
+ if v.LinodeLabel != instance.Label {
+ t.Error("Error linode label mismatched")
+ }
}
func TestVolume_Update(t *testing.T) {
diff --git a/test/unit/account_agreements_test.go b/test/unit/account_agreements_test.go
index c409359e3..060d686c7 100644
--- a/test/unit/account_agreements_test.go
+++ b/test/unit/account_agreements_test.go
@@ -2,10 +2,11 @@ package unit
import (
"context"
+ "testing"
+
"github.com/jarcoal/httpmock"
"github.com/linode/linodego"
"github.com/stretchr/testify/assert"
- "testing"
)
func TestAccountAgreements_Get(t *testing.T) {
diff --git a/test/unit/account_availability_test.go b/test/unit/account_availability_test.go
new file mode 100644
index 000000000..6ba12726f
--- /dev/null
+++ b/test/unit/account_availability_test.go
@@ -0,0 +1,91 @@
+package unit
+
+import (
+ "context"
+ "fmt"
+ "testing"
+
+ "github.com/linode/linodego"
+ "github.com/stretchr/testify/assert"
+)
+
+func TestAccountAvailabilities_List(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_availability_list")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockGet("account/availability", fixtureData)
+
+ availabilities, err := base.Client.ListAccountAvailabilities(context.Background(), &linodego.ListOptions{})
+ assert.NoError(t, err)
+
+ // Check specific region "us-central"
+ var usCentralAvailability *linodego.AccountAvailability
+ for _, availability := range availabilities {
+ if availability.Region == "us-central" {
+ usCentralAvailability = &availability
+ break
+ }
+ }
+ if usCentralAvailability == nil {
+ t.Errorf("Expected region 'us-central' to be in the response, but it was not found")
+ } else {
+ expectedAvailable := []string{"Linodes", "NodeBalancers", "Block Storage", "Kubernetes"}
+ if !equalSlices(usCentralAvailability.Available, expectedAvailable) {
+ t.Errorf("Expected available resources for 'us-central' to be %v, but got %v", expectedAvailable, usCentralAvailability.Available)
+ }
+
+ if len(usCentralAvailability.Unavailable) != 0 {
+ t.Errorf("Expected no unavailable resources for 'us-central', but got %v", usCentralAvailability.Unavailable)
+ }
+ }
+
+ expectedRegionsCount := 40
+ if len(availabilities) != expectedRegionsCount {
+ t.Errorf("Expected %d regions, but got %d", expectedRegionsCount, len(availabilities))
+ }
+}
+
+func TestAccountAvailability_Get(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_availability_get")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ regionID := "us-east"
+
+ base.MockGet(fmt.Sprintf("account/availability/%s", regionID), fixtureData)
+
+ availability, err := base.Client.GetAccountAvailability(context.Background(), regionID)
+ assert.NoError(t, err)
+
+ assert.Equal(t, "us-east", availability.Region, "Expected region to be 'us-east'")
+
+ expectedAvailable := []string{"Linodes", "NodeBalancers"}
+ assert.ElementsMatch(t, expectedAvailable, availability.Available, "Available resources do not match the expected list")
+
+ expectedUnavailable := []string{"Kubernetes", "Block Storage"}
+ assert.ElementsMatch(t, expectedUnavailable, availability.Unavailable, "Unavailable resources do not match the expected list")
+}
+
+// Helper function to compare slices in assertion
+func equalSlices(a, b []string) bool {
+ if len(a) != len(b) {
+ return false
+ }
+ aMap := make(map[string]bool)
+ for _, v := range a {
+ aMap[v] = true
+ }
+ for _, v := range b {
+ if !aMap[v] {
+ return false
+ }
+ }
+ return true
+}
diff --git a/test/unit/account_betas_test.go b/test/unit/account_betas_test.go
new file mode 100644
index 000000000..7c7512cc6
--- /dev/null
+++ b/test/unit/account_betas_test.go
@@ -0,0 +1,75 @@
+package unit
+
+import (
+ "context"
+ "fmt"
+ "testing"
+
+ "github.com/jarcoal/httpmock"
+ "github.com/linode/linodego"
+ "github.com/stretchr/testify/assert"
+)
+
+func TestAccountBetaProgram_List(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_beta_list")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockGet("account/betas", fixtureData)
+
+ betaPrograms, err := base.Client.ListAccountBetaPrograms(context.Background(), &linodego.ListOptions{})
+ assert.NoError(t, err)
+ assert.Len(t, betaPrograms, 1, "Expected exactly 1 beta program")
+
+ betaProgram := betaPrograms[0]
+
+ assert.Equal(t, "example_open", betaProgram.ID, "Expected beta program ID to be 'example_open'")
+ assert.Equal(t, "Example Open Beta", betaProgram.Label, "Expected beta program label to be 'Example Open Beta'")
+ assert.Equal(t, "This is an open public beta for an example feature.", betaProgram.Description, "Beta program description does not match")
+ assert.Equal(t, "2023-07-11 00:00:00 +0000 UTC", betaProgram.Started.String(), "Expected beta program started date to be '2023-07-11T00:00:00'")
+ assert.Equal(t, "2023-09-11 00:00:00 +0000 UTC", betaProgram.Enrolled.String(), "Expected beta program enrolled date to be '2023-09-11T00:00:00'")
+ assert.Nil(t, betaProgram.Ended, "Expected beta program ended date to be nil")
+}
+
+func TestAccountBetaProgram_Get(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_beta_get")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ betaId := "example_open"
+
+ base.MockGet(fmt.Sprintf("account/betas/%s", betaId), fixtureData)
+
+ betaProgram, err := base.Client.GetAccountBetaProgram(context.Background(), betaId)
+ assert.NoError(t, err)
+
+ assert.Equal(t, "example_open", betaProgram.ID, "Expected beta program ID to be 'example_open'")
+ assert.Equal(t, "Example Open Beta", betaProgram.Label, "Expected beta program label to be 'Example Open Beta'.")
+ assert.Equal(t, "This is an open public beta for an example feature.", betaProgram.Description, "Beta program description does not match")
+ assert.Equal(t, "2023-07-11 00:00:00 +0000 UTC", betaProgram.Started.String(), "Expected beta program started date to be '2023-07-11T00:00:00'")
+ assert.Equal(t, "2023-09-11 00:00:00 +0000 UTC", betaProgram.Enrolled.String(), "Expected beta program enrolled date to be '2023-09-11T00:00:00'")
+ assert.Nil(t, betaProgram.Ended, "Expected beta program ended date to be nil")
+}
+
+func TestAccountBetaProgram_Join(t *testing.T) {
+ client := createMockClient(t)
+
+ betaId := "global_load_balancer_beta"
+
+ requestData := linodego.AccountBetaProgramCreateOpts{
+ ID: betaId,
+ }
+
+ httpmock.RegisterRegexpResponder("POST", mockRequestURL(t, "account/betas"),
+ mockRequestBodyValidate(t, requestData, nil))
+
+ if _, err := client.JoinBetaProgram(context.Background(), requestData); err != nil {
+ t.Fatal(err)
+ }
+}
diff --git a/test/unit/account_events_test.go b/test/unit/account_events_test.go
index 0a525520c..30abfa648 100644
--- a/test/unit/account_events_test.go
+++ b/test/unit/account_events_test.go
@@ -2,9 +2,10 @@ package unit
import (
"context"
+ "testing"
+
"github.com/linode/linodego"
"github.com/stretchr/testify/assert"
- "testing"
)
func TestAccountEvents_List(t *testing.T) {
diff --git a/test/unit/account_invoices_test.go b/test/unit/account_invoices_test.go
index 3a4478f0b..55b0dc800 100644
--- a/test/unit/account_invoices_test.go
+++ b/test/unit/account_invoices_test.go
@@ -2,8 +2,9 @@ package unit
import (
"context"
- "github.com/stretchr/testify/assert"
"testing"
+
+ "github.com/stretchr/testify/assert"
)
func TestAccountInvoices_List(t *testing.T) {
diff --git a/test/unit/account_logins_test.go b/test/unit/account_logins_test.go
new file mode 100644
index 000000000..4075a36f3
--- /dev/null
+++ b/test/unit/account_logins_test.go
@@ -0,0 +1,56 @@
+package unit
+
+import (
+ "context"
+ "fmt"
+ "testing"
+
+ "github.com/linode/linodego"
+ "github.com/stretchr/testify/assert"
+)
+
+func TestAccountLogins_List(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_logins_list")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockGet("account/logins", fixtureData)
+
+ logins, err := base.Client.ListLogins(context.Background(), &linodego.ListOptions{})
+ assert.NoError(t, err)
+
+ assert.Len(t, logins, 1, "Expected one login record to be returned")
+
+ login := logins[0]
+ assert.Equal(t, 1234, login.ID, "Expected login ID to be 1234")
+ assert.Equal(t, "2018-01-01 00:01:01 +0000 UTC", login.Datetime.String(), "Expected login datetime to be '2018-01-01T00:01:01'")
+ assert.Equal(t, "192.0.2.0", login.IP, "Expected login IP to be '192.0.2.0'")
+ assert.True(t, login.Restricted, "Expected login restricted to be true.")
+ assert.Equal(t, "successful", login.Status, "Expected login status to be 'successful'")
+ assert.Equal(t, "example_user", login.Username, "Expected login username to be 'example_user'")
+}
+
+func TestAccountLogin_Get(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_logins_get")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ loginID := 1234
+ base.MockGet(fmt.Sprintf("account/logins/%d", loginID), fixtureData)
+
+ login, err := base.Client.GetLogin(context.Background(), loginID)
+ assert.NoError(t, err)
+
+ assert.Equal(t, 1234, login.ID, "Expected login ID to be 1234")
+ assert.Equal(t, "2018-01-01 00:01:01 +0000 UTC", login.Datetime.String(), "Expected login datetime to be '2018-01-01T00:01:01'")
+ assert.Equal(t, "192.0.2.0", login.IP, "Expected login IP to be '192.0.2.0'")
+ assert.True(t, login.Restricted, "Expected login restricted to be true")
+ assert.Equal(t, "successful", login.Status, "Expected login status to be 'successful'")
+ assert.Equal(t, "example_user", login.Username, "Expected login username to be 'example_user'")
+}
diff --git a/test/unit/account_notifications_test.go b/test/unit/account_notifications_test.go
new file mode 100644
index 000000000..bf3102ad0
--- /dev/null
+++ b/test/unit/account_notifications_test.go
@@ -0,0 +1,38 @@
+package unit
+
+import (
+ "context"
+ "testing"
+
+ "github.com/linode/linodego"
+ "github.com/stretchr/testify/assert"
+)
+
+func TestAccountNotifications_List(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_notifications_list")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockGet("account/notifications", fixtureData)
+
+ notifications, err := base.Client.ListNotifications(context.Background(), &linodego.ListOptions{})
+ assert.NoError(t, err)
+
+ assert.NotEmpty(t, notifications, "Expected notifications to be returned.")
+
+ // Assertions for the first notification in the list
+ notification := notifications[0]
+ assert.Equal(t, "You have an important ticket open!", notification.Label, "Expected notification label to be 'You have an important ticket open!'")
+ assert.Equal(t, "You have an important ticket open!", notification.Message, "Expected notification message to be 'You have an important ticket open!'")
+ assert.Equal(t, linodego.NotificationSeverity("major"), notification.Severity, "Expected notification severity to be 'major'")
+ assert.Equal(t, linodego.NotificationType("ticket_important"), notification.Type, "Expected notification type to be 'ticket_important'")
+
+ // Validate entity within notification
+ assert.Equal(t, 3456, notification.Entity.ID, "Expected ticket ID to be 3456.")
+ assert.Equal(t, "Linode not booting.", notification.Entity.Label, "Expected entity label to be 'Linode not booting.'")
+ assert.Equal(t, "ticket", notification.Entity.Type, "Expected entity type to be 'ticket'.")
+ assert.Equal(t, "/support/tickets/3456", notification.Entity.URL, "Expected entity URL to be '/support/tickets/3456'")
+}
diff --git a/test/unit/account_oauth_client_test.go b/test/unit/account_oauth_client_test.go
new file mode 100644
index 000000000..3aaccaa1b
--- /dev/null
+++ b/test/unit/account_oauth_client_test.go
@@ -0,0 +1,148 @@
+package unit
+
+import (
+ "context"
+ "fmt"
+ "testing"
+
+ "github.com/jarcoal/httpmock"
+ "github.com/linode/linodego"
+ "github.com/stretchr/testify/assert"
+)
+
+func TestAccountOauthClient_List(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_oauth_client_list")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockGet("account/oauth-clients", fixtureData)
+
+ oauthClients, err := base.Client.ListOAuthClients(context.Background(), &linodego.ListOptions{})
+ assert.NoError(t, err)
+ // Assertions on the returned data
+ assert.Len(t, oauthClients, 1, "Expected one OAuth client")
+
+ client := oauthClients[0]
+ assert.Equal(t, "2737bf16b39ab5d7b4a1", client.ID, "Unexpected ID")
+ assert.Equal(t, "Test_Client_1", client.Label, "Unexpected Label")
+ assert.False(t, client.Public, "Unexpected Public value")
+ assert.Equal(t, "https://example.org/oauth/callback", client.RedirectURI, "Unexpected Redirect URI")
+ assert.Equal(t, linodego.OAuthClientStatus("active"), client.Status, "Unexpected Status")
+ assert.Equal(t, "https://api.linode.com/v4/account/clients/2737bf16b39ab5d7b4a1/thumbnail", *client.ThumbnailURL, "Unexpected Thumbnail URL")
+}
+
+func TestAccountOauthClient_Get(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_oauth_client_get")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ clientID := "2737bf16b39ab5d7b4a1"
+ base.MockGet(fmt.Sprintf("account/oauth-clients/%s", clientID), fixtureData)
+
+ oauthClient, err := base.Client.GetOAuthClient(context.Background(), clientID)
+ assert.NoError(t, err)
+ // Assertions on the returned data
+ assert.Equal(t, "2737bf16b39ab5d7b4a1", oauthClient.ID, "Unexpected ID")
+ assert.Equal(t, "Test_Client_1", oauthClient.Label, "Unexpected Label")
+ assert.False(t, oauthClient.Public, "Unexpected Public value")
+ assert.Equal(t, "https://example.org/oauth/callback", oauthClient.RedirectURI, "Unexpected Redirect URI")
+ assert.Equal(t, linodego.OAuthClientStatus("active"), oauthClient.Status, "Unexpected Status")
+ assert.Equal(t, "https://api.linode.com/v4/account/clients/2737bf16b39ab5d7b4a1/thumbnail", *oauthClient.ThumbnailURL, "Unexpected Thumbnail URL")
+}
+
+func TestAccountOauthClient_Create(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_oauth_client_create")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ requestData := linodego.OAuthClientCreateOptions{
+ Label: "Test_Client_1",
+ RedirectURI: "https://example.org/oauth/callback",
+ }
+
+ base.MockPost("account/oauth-clients", fixtureData)
+
+ oauthClient, err := base.Client.CreateOAuthClient(context.Background(), requestData)
+ assert.NoError(t, err)
+ // Assertions on the returned data
+ assert.Equal(t, "2737bf16b39ab5d7b4a1", oauthClient.ID, "Unexpected ID")
+ assert.Equal(t, "Test_Client_1", oauthClient.Label, "Unexpected Label")
+ assert.False(t, oauthClient.Public, "Unexpected Public value")
+ assert.Equal(t, "https://example.org/oauth/callback", oauthClient.RedirectURI, "Unexpected Redirect URI")
+ assert.Equal(t, linodego.OAuthClientStatus("active"), oauthClient.Status, "Unexpected Status")
+ assert.Equal(t, "https://api.linode.com/v4/account/clients/2737bf16b39ab5d7b4a1/thumbnail", *oauthClient.ThumbnailURL, "Unexpected Thumbnail URL")
+}
+
+func TestAccountOauthClient_Update(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_oauth_client_update")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ requestData := linodego.OAuthClientUpdateOptions{
+ Label: "Test_Client_1_Updated",
+ RedirectURI: "https://example_updated.org/oauth/callback",
+ Public: true,
+ }
+
+ clientID := "2737bf16b39ab5d7b4a1"
+ base.MockPut(fmt.Sprintf("account/oauth-clients/%s", clientID), fixtureData)
+
+ oauthClient, err := base.Client.UpdateOAuthClient(context.Background(), clientID, requestData)
+ assert.NoError(t, err)
+ // Assertions on the updated data
+ assert.Equal(t, "2737bf16b39ab5d7b4a1", oauthClient.ID, "Unexpected ID")
+ assert.Equal(t, "Test_Client_1_Updated", oauthClient.Label, "Unexpected Label")
+ assert.True(t, oauthClient.Public, "Unexpected Public value")
+ assert.Equal(t, "https://example_updated.org/oauth/callback", oauthClient.RedirectURI, "Unexpected Redirect URI")
+ assert.Equal(t, linodego.OAuthClientStatus("active"), oauthClient.Status, "Unexpected Status")
+ assert.Equal(t, "https://api.linode.com/v4/account/clients/2737bf16b39ab5d7b4a1/thumbnail", *oauthClient.ThumbnailURL, "Unexpected Thumbnail URL")
+}
+
+func TestAccountOauthClient_Delete(t *testing.T) {
+ client := createMockClient(t)
+
+ clientID := "2737bf16b39ab5d7b4a1"
+
+ httpmock.RegisterRegexpResponder("DELETE", mockRequestURL(t, fmt.Sprintf("account/oauth-clients/%s", clientID)),
+ httpmock.NewStringResponder(200, "{}"))
+
+ if err := client.DeleteOAuthClient(context.Background(), clientID); err != nil {
+ t.Fatal(err)
+ }
+}
+
+func TestAccountOauthClient_Reset(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_oauth_client_reset")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ clientID := "2737bf16b39ab5d7b4a1"
+ base.MockPost(fmt.Sprintf("account/oauth-clients/%s/reset-secret", clientID), fixtureData)
+
+ oauthClient, err := base.Client.ResetOAuthClientSecret(context.Background(), clientID)
+ assert.NoError(t, err)
+
+ assert.Equal(t, "2737bf16b39ab5d7b4a1", oauthClient.ID, "Unexpected ID")
+ assert.Equal(t, "Test_Client_1", oauthClient.Label, "Unexpected Label")
+ assert.False(t, oauthClient.Public, "Unexpected Public value")
+ assert.Equal(t, "https://example.org/oauth/callback", oauthClient.RedirectURI, "Unexpected Redirect URI")
+ assert.Equal(t, linodego.OAuthClientStatus("active"), oauthClient.Status, "Unexpected Status")
+ assert.Equal(t, "https://api.linode.com/v4/account/clients/2737bf16b39ab5d7b4a1/thumbnail", *oauthClient.ThumbnailURL, "Unexpected Thumbnail URL")
+ assert.Equal(t, "", oauthClient.Secret, "Secret should have been reset")
+ assert.NotEmpty(t, oauthClient.Secret, "Secret should not be empty after reset")
+}
diff --git a/test/unit/account_payment_methods_test.go b/test/unit/account_payment_methods_test.go
index 277d1ffc1..b4eed5b99 100644
--- a/test/unit/account_payment_methods_test.go
+++ b/test/unit/account_payment_methods_test.go
@@ -2,10 +2,11 @@ package unit
import (
"context"
+ "testing"
+
"github.com/jarcoal/httpmock"
"github.com/linode/linodego"
"github.com/stretchr/testify/assert"
- "testing"
)
func TestAccountPaymentMethods_Get(t *testing.T) {
diff --git a/test/unit/account_payments_test.go b/test/unit/account_payments_test.go
index c78d6f9e5..36553b433 100644
--- a/test/unit/account_payments_test.go
+++ b/test/unit/account_payments_test.go
@@ -3,9 +3,10 @@ package unit
import (
"context"
"encoding/json"
+ "testing"
+
"github.com/linode/linodego"
"github.com/stretchr/testify/assert"
- "testing"
)
func TestAccountPayments_Create(t *testing.T) {
diff --git a/test/unit/account_promo_credits_test.go b/test/unit/account_promo_credits_test.go
index eaf1513fb..04b77e492 100644
--- a/test/unit/account_promo_credits_test.go
+++ b/test/unit/account_promo_credits_test.go
@@ -2,9 +2,10 @@ package unit
import (
"context"
+ "testing"
+
"github.com/linode/linodego"
"github.com/stretchr/testify/assert"
- "testing"
)
func TestAccountPromoCredits_Add(t *testing.T) {
diff --git a/test/unit/account_service_transfer_test.go b/test/unit/account_service_transfer_test.go
new file mode 100644
index 000000000..740e39589
--- /dev/null
+++ b/test/unit/account_service_transfer_test.go
@@ -0,0 +1,112 @@
+package unit
+
+import (
+ "context"
+ "testing"
+ "time"
+
+ "github.com/jarcoal/httpmock"
+ "github.com/linode/linodego"
+ "github.com/stretchr/testify/assert"
+)
+
+func TestAccountServiceTransfer_List(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_service_transfers_list")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockGet("account/service-transfers", fixtureData)
+
+ transfers, err := base.Client.ListAccountServiceTransfer(context.Background(), nil)
+ assert.NoError(t, err)
+
+ assert.Equal(t, 1, len(transfers))
+ ast := transfers[0]
+ assert.Equal(t, time.Time(time.Date(2021, time.February, 11, 16, 37, 3, 0, time.UTC)), *ast.Created)
+ assert.Equal(t, time.Time(time.Date(2021, time.February, 12, 16, 37, 3, 0, time.UTC)), *ast.Expiry)
+ assert.Equal(t, time.Time(time.Date(2021, time.February, 11, 16, 37, 3, 0, time.UTC)), *ast.Updated)
+ assert.Equal(t, 111, ast.Entities.Linodes[0])
+ assert.Equal(t, 222, ast.Entities.Linodes[1])
+ assert.Equal(t, true, ast.IsSender)
+ assert.Equal(t, linodego.AccountServiceTransferStatus("pending"), ast.Status)
+ assert.Equal(t, "123E4567-E89B-12D3-A456-426614174000", ast.Token)
+}
+
+func TestAccountServiceTransfer_Get(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_service_transfers_get")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockGet("account/service-transfers/123E4567-E89B-12D3-A456-426614174000", fixtureData)
+
+ ast, err := base.Client.GetAccountServiceTransfer(context.Background(), "123E4567-E89B-12D3-A456-426614174000")
+ assert.NoError(t, err)
+
+ assert.Equal(t, time.Time(time.Date(2021, time.February, 11, 16, 37, 3, 0, time.UTC)), *ast.Created)
+ assert.Equal(t, time.Time(time.Date(2021, time.February, 12, 16, 37, 3, 0, time.UTC)), *ast.Expiry)
+ assert.Equal(t, time.Time(time.Date(2021, time.February, 11, 16, 37, 3, 0, time.UTC)), *ast.Updated)
+ assert.Equal(t, 111, ast.Entities.Linodes[0])
+ assert.Equal(t, 222, ast.Entities.Linodes[1])
+ assert.Equal(t, true, ast.IsSender)
+ assert.Equal(t, linodego.AccountServiceTransferStatus("pending"), ast.Status)
+ assert.Equal(t, "123E4567-E89B-12D3-A456-426614174000", ast.Token)
+}
+
+func TestAccountServiceTransfer_Request(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_service_transfers_request")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ requestData := linodego.AccountServiceTransferRequestOptions{
+ Entities: linodego.AccountServiceTransferEntity{
+ Linodes: []int{111, 222},
+ },
+ }
+
+ base.MockPost("account/service-transfers", fixtureData)
+
+ ast, err := base.Client.RequestAccountServiceTransfer(context.Background(), requestData)
+ assert.NoError(t, err)
+
+ assert.Equal(t, time.Time(time.Date(2021, time.February, 11, 16, 37, 3, 0, time.UTC)), *ast.Created)
+ assert.Equal(t, time.Time(time.Date(2021, time.February, 12, 16, 37, 3, 0, time.UTC)), *ast.Expiry)
+ assert.Equal(t, time.Time(time.Date(2021, time.February, 11, 16, 37, 3, 0, time.UTC)), *ast.Updated)
+ assert.Equal(t, 111, ast.Entities.Linodes[0])
+ assert.Equal(t, 222, ast.Entities.Linodes[1])
+ assert.Equal(t, true, ast.IsSender)
+ assert.Equal(t, linodego.AccountServiceTransferStatus("pending"), ast.Status)
+ assert.Equal(t, "123E4567-E89B-12D3-A456-426614174000", ast.Token)
+}
+
+func TestAccountServiceTransfer_Accept(t *testing.T) {
+ client := createMockClient(t)
+
+ httpmock.RegisterRegexpResponder("POST",
+ mockRequestURL(t, "account/service-transfers/123E4567-E89B-12D3-A456-426614174000/accept"),
+ httpmock.NewStringResponder(200, "{}"))
+
+ if err := client.AcceptAccountServiceTransfer(context.Background(), "123E4567-E89B-12D3-A456-426614174000"); err != nil {
+ t.Fatal(err)
+ }
+}
+
+func TestAccountServiceTransfer_Cancel(t *testing.T) {
+ client := createMockClient(t)
+
+ httpmock.RegisterRegexpResponder("DELETE",
+ mockRequestURL(t, "account/service-transfers/123E4567-E89B-12D3-A456-426614174000"),
+ httpmock.NewStringResponder(200, "{}"))
+
+ if err := client.CancelAccountServiceTransfer(context.Background(), "123E4567-E89B-12D3-A456-426614174000"); err != nil {
+ t.Fatal(err)
+ }
+}
diff --git a/test/unit/account_settings_test.go b/test/unit/account_settings_test.go
new file mode 100644
index 000000000..56436c79a
--- /dev/null
+++ b/test/unit/account_settings_test.go
@@ -0,0 +1,58 @@
+package unit
+
+import (
+ "context"
+ "testing"
+
+ "github.com/linode/linodego"
+ "github.com/stretchr/testify/assert"
+)
+
+// Helper function to create *bool
+func Bool(value bool) *bool {
+ return &value
+}
+
+func TestAccountSettings_Get(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_settings_get")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockGet("account/settings", fixtureData)
+
+ accountSettings, err := base.Client.GetAccountSettings(context.Background())
+ assert.NoError(t, err)
+ assert.NotNil(t, accountSettings, "Account settings should not be nil")
+ assert.False(t, accountSettings.Managed, "Expected 'managed' to be false")
+ assert.True(t, accountSettings.NetworkHelper, "Expected 'network_helper' to be true")
+ assert.Nil(t, accountSettings.LongviewSubscription, "Expected 'longview_subscription' to be nil")
+ assert.True(t, accountSettings.BackupsEnabled, "Expected 'backups_enabled' to be true")
+ assert.Equal(t, "active", *accountSettings.ObjectStorage, "Expected 'object_storage' to be 'active'")
+}
+
+func TestAccountSettings_Update(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_settings_update")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ requestData := linodego.AccountSettingsUpdateOptions{
+ BackupsEnabled: Bool(true),
+ NetworkHelper: Bool(true),
+ }
+ base.MockPut("account/settings", fixtureData)
+
+ accountSettings, err := base.Client.UpdateAccountSettings(context.Background(), requestData)
+ assert.NoError(t, err)
+ assert.NotNil(t, accountSettings, "Account settings should not be nil")
+ assert.False(t, accountSettings.Managed, "Expected 'managed' to be false")
+ assert.True(t, accountSettings.NetworkHelper, "Expected 'network_helper' to be true")
+ assert.Nil(t, accountSettings.LongviewSubscription, "Expected 'longview_subscription' to be nil")
+ assert.True(t, accountSettings.BackupsEnabled, "Expected 'backups_enabled' to be true")
+ assert.Equal(t, "active", *accountSettings.ObjectStorage, "Expected 'object_storage' to be 'active'")
+}
diff --git a/test/unit/account_test.go b/test/unit/account_test.go
index 23d54b13f..c6c7d0c35 100644
--- a/test/unit/account_test.go
+++ b/test/unit/account_test.go
@@ -2,9 +2,10 @@ package unit
import (
"context"
+ "testing"
+
"github.com/linode/linodego"
"github.com/stretchr/testify/assert"
- "testing"
)
func TestAccount_Get(t *testing.T) {
diff --git a/test/unit/account_user_grants_test.go b/test/unit/account_user_grants_test.go
new file mode 100644
index 000000000..12731cfc6
--- /dev/null
+++ b/test/unit/account_user_grants_test.go
@@ -0,0 +1,145 @@
+package unit
+
+import (
+ "context"
+ "testing"
+
+ "github.com/linode/linodego"
+ "github.com/stretchr/testify/assert"
+)
+
+func TestAccountUserGrants_Get(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_user_grants_get")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockGet("account/users/example-user/grants", fixtureData)
+
+ grants, err := base.Client.GetUserGrants(context.Background(), "example-user")
+ if err != nil {
+ t.Fatalf("Error getting grants: %v", err)
+ }
+
+ assert.Equal(t, 123, grants.Database[0].ID)
+ assert.Equal(t, "example-entity", grants.Database[0].Label)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), grants.Database[0].Permissions)
+ assert.Equal(t, 123, grants.Domain[0].ID)
+ assert.Equal(t, "example-entity", grants.Domain[0].Label)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), grants.Domain[0].Permissions)
+ assert.Equal(t, 123, grants.Firewall[0].ID)
+ assert.Equal(t, "example-entity", grants.Firewall[0].Label)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), grants.Firewall[0].Permissions)
+ assert.Equal(t, 123, grants.Image[0].ID)
+ assert.Equal(t, "example-entity", grants.Image[0].Label)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), grants.Image[0].Permissions)
+ assert.Equal(t, 123, grants.Linode[0].ID)
+ assert.Equal(t, "example-entity", grants.Linode[0].Label)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), grants.Linode[0].Permissions)
+ assert.Equal(t, 123, grants.Longview[0].ID)
+ assert.Equal(t, "example-entity", grants.Longview[0].Label)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), grants.Longview[0].Permissions)
+ assert.Equal(t, 123, grants.NodeBalancer[0].ID)
+ assert.Equal(t, "example-entity", grants.NodeBalancer[0].Label)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), grants.NodeBalancer[0].Permissions)
+ assert.Equal(t, 123, grants.PlacementGroup[0].ID)
+ assert.Equal(t, "example-entity", grants.PlacementGroup[0].Label)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), grants.PlacementGroup[0].Permissions)
+ assert.Equal(t, 123, grants.StackScript[0].ID)
+ assert.Equal(t, "example-entity", grants.StackScript[0].Label)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), grants.StackScript[0].Permissions)
+ assert.Equal(t, 123, grants.Volume[0].ID)
+ assert.Equal(t, "example-entity", grants.Volume[0].Label)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), grants.Volume[0].Permissions)
+ assert.Equal(t, 123, grants.VPC[0].ID)
+ assert.Equal(t, "example-entity", grants.VPC[0].Label)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), grants.VPC[0].Permissions)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), *grants.Global.AccountAccess)
+ assert.Equal(t, true, grants.Global.AddDatabases)
+ assert.Equal(t, true, grants.Global.AddDomains)
+ assert.Equal(t, true, grants.Global.AddFirewalls)
+ assert.Equal(t, true, grants.Global.AddImages)
+ assert.Equal(t, true, grants.Global.AddLinodes)
+ assert.Equal(t, true, grants.Global.AddLongview)
+ assert.Equal(t, true, grants.Global.AddNodeBalancers)
+ assert.Equal(t, true, grants.Global.AddPlacementGroups)
+ assert.Equal(t, true, grants.Global.AddStackScripts)
+ assert.Equal(t, true, grants.Global.AddVolumes)
+ assert.Equal(t, true, grants.Global.AddVPCs)
+ assert.Equal(t, false, grants.Global.CancelAccount)
+ assert.Equal(t, true, grants.Global.ChildAccountAccess)
+ assert.Equal(t, true, grants.Global.LongviewSubscription)
+}
+
+func TestAccountGrants_Update(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_user_grants_update")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ globalGrants := linodego.GlobalUserGrants{
+ AccountAccess: nil,
+ }
+
+ requestData := linodego.UserGrantsUpdateOptions{
+ Global: globalGrants,
+ }
+
+ base.MockPut("account/users/example-user/grants", fixtureData)
+
+ grants, err := base.Client.UpdateUserGrants(context.Background(), "example-user", requestData)
+ assert.NoError(t, err)
+
+ assert.Equal(t, 123, grants.Database[0].ID)
+ assert.Equal(t, "example-entity", grants.Database[0].Label)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), grants.Database[0].Permissions)
+ assert.Equal(t, 123, grants.Domain[0].ID)
+ assert.Equal(t, "example-entity", grants.Domain[0].Label)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), grants.Domain[0].Permissions)
+ assert.Equal(t, 123, grants.Firewall[0].ID)
+ assert.Equal(t, "example-entity", grants.Firewall[0].Label)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), grants.Firewall[0].Permissions)
+ assert.Equal(t, 123, grants.Image[0].ID)
+ assert.Equal(t, "example-entity", grants.Image[0].Label)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), grants.Image[0].Permissions)
+ assert.Equal(t, 123, grants.Linode[0].ID)
+ assert.Equal(t, "example-entity", grants.Linode[0].Label)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), grants.Linode[0].Permissions)
+ assert.Equal(t, 123, grants.Longview[0].ID)
+ assert.Equal(t, "example-entity", grants.Longview[0].Label)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), grants.Longview[0].Permissions)
+ assert.Equal(t, 123, grants.NodeBalancer[0].ID)
+ assert.Equal(t, "example-entity", grants.NodeBalancer[0].Label)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), grants.NodeBalancer[0].Permissions)
+ assert.Equal(t, 123, grants.PlacementGroup[0].ID)
+ assert.Equal(t, "example-entity", grants.PlacementGroup[0].Label)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), grants.PlacementGroup[0].Permissions)
+ assert.Equal(t, 123, grants.StackScript[0].ID)
+ assert.Equal(t, "example-entity", grants.StackScript[0].Label)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), grants.StackScript[0].Permissions)
+ assert.Equal(t, 123, grants.Volume[0].ID)
+ assert.Equal(t, "example-entity", grants.Volume[0].Label)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), grants.Volume[0].Permissions)
+ assert.Equal(t, 123, grants.VPC[0].ID)
+ assert.Equal(t, "example-entity", grants.VPC[0].Label)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_only"), grants.VPC[0].Permissions)
+ assert.Equal(t, linodego.GrantPermissionLevel("read_write"), *grants.Global.AccountAccess)
+ assert.Equal(t, true, grants.Global.AddDatabases)
+ assert.Equal(t, true, grants.Global.AddDomains)
+ assert.Equal(t, true, grants.Global.AddFirewalls)
+ assert.Equal(t, true, grants.Global.AddImages)
+ assert.Equal(t, true, grants.Global.AddLinodes)
+ assert.Equal(t, true, grants.Global.AddLongview)
+ assert.Equal(t, true, grants.Global.AddNodeBalancers)
+ assert.Equal(t, true, grants.Global.AddPlacementGroups)
+ assert.Equal(t, true, grants.Global.AddStackScripts)
+ assert.Equal(t, true, grants.Global.AddVolumes)
+ assert.Equal(t, true, grants.Global.AddVPCs)
+ assert.Equal(t, false, grants.Global.CancelAccount)
+ assert.Equal(t, true, grants.Global.ChildAccountAccess)
+ assert.Equal(t, true, grants.Global.LongviewSubscription)
+}
diff --git a/test/unit/account_users_test.go b/test/unit/account_users_test.go
new file mode 100644
index 000000000..e72c3a4bf
--- /dev/null
+++ b/test/unit/account_users_test.go
@@ -0,0 +1,127 @@
+package unit
+
+import (
+ "context"
+ "testing"
+
+ "github.com/jarcoal/httpmock"
+ "github.com/linode/linodego"
+ "github.com/stretchr/testify/assert"
+)
+
+func TestAccountUsers_List(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_users_list")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockGet("account/users", fixtureData)
+
+ users, err := base.Client.ListUsers(context.Background(), nil)
+ if err != nil {
+ t.Fatalf("Error listing users: %v", err)
+ }
+
+ assert.Equal(t, 1, len(users))
+ user := users[0]
+ assert.Equal(t, "jperez@linode.com", user.Email)
+ assert.Equal(t, true, user.Restricted)
+ assert.Equal(t, []string{"home-pc", "laptop"}, user.SSHKeys)
+ assert.Equal(t, true, user.TFAEnabled)
+ assert.Equal(t, linodego.UserType("parent"), user.UserType)
+ assert.Equal(t, "jsmith", user.Username)
+ assert.Equal(t, "+5555555555", *user.VerifiedPhoneNumber)
+}
+
+func TestAccountUsers_Get(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_users_get")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockGet("account/users/jsmith", fixtureData)
+
+ user, err := base.Client.GetUser(context.Background(), "jsmith")
+ if err != nil {
+ t.Fatalf("Error getting user: %v", err)
+ }
+
+ assert.Equal(t, "jperez@linode.com", user.Email)
+ assert.Equal(t, true, user.Restricted)
+ assert.Equal(t, []string{"home-pc", "laptop"}, user.SSHKeys)
+ assert.Equal(t, true, user.TFAEnabled)
+ assert.Equal(t, linodego.UserType("parent"), user.UserType)
+ assert.Equal(t, "jsmith", user.Username)
+ assert.Equal(t, "+5555555555", *user.VerifiedPhoneNumber)
+}
+
+func TestAccountUsers_Create(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_users_create")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ requestData := linodego.UserCreateOptions{
+ Username: "example_user",
+ Email: "example_user@linode.com",
+ Restricted: true,
+ }
+
+ base.MockPost("account/users", fixtureData)
+
+ user, err := base.Client.CreateUser(context.Background(), requestData)
+ assert.NoError(t, err)
+
+ assert.Equal(t, "example_user@linode.com", user.Email)
+ assert.Equal(t, true, user.Restricted)
+ assert.Equal(t, []string{"home-pc", "laptop"}, user.SSHKeys)
+ assert.Equal(t, true, user.TFAEnabled)
+ assert.Equal(t, "example_user", user.Username)
+ assert.Equal(t, "+5555555555", *user.VerifiedPhoneNumber)
+}
+
+func TestAccountUsers_Update(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("account_users_update")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ restricted := true
+
+ requestData := linodego.UserUpdateOptions{
+ Username: "adevi",
+ Email: "jkowalski@linode.com",
+ Restricted: &restricted,
+ }
+
+ base.MockPut("account/users/adevi", fixtureData)
+
+ user, err := base.Client.UpdateUser(context.Background(), "adevi", requestData)
+ assert.NoError(t, err)
+
+ assert.Equal(t, "jkowalski@linode.com", user.Email)
+ assert.Equal(t, true, user.Restricted)
+ assert.Equal(t, []string{"home-pc", "laptop"}, user.SSHKeys)
+ assert.Equal(t, true, user.TFAEnabled)
+ assert.Equal(t, linodego.UserType("parent"), user.UserType)
+ assert.Equal(t, "adevi", user.Username)
+ assert.Equal(t, "+5555555555", *user.VerifiedPhoneNumber)
+}
+
+func TestAccountUsers_Delete(t *testing.T) {
+ client := createMockClient(t)
+
+ httpmock.RegisterRegexpResponder("DELETE", mockRequestURL(t, "account/users/example-user"), httpmock.NewStringResponder(200, "{}"))
+
+ if err := client.DeleteUser(context.Background(), "example-user"); err != nil {
+ t.Fatal(err)
+ }
+}
diff --git a/test/unit/domain_test.go b/test/unit/domain_test.go
new file mode 100644
index 000000000..2bbdac26f
--- /dev/null
+++ b/test/unit/domain_test.go
@@ -0,0 +1,55 @@
+package unit
+
+import (
+ "context"
+ "testing"
+
+ "github.com/linode/linodego"
+ "github.com/stretchr/testify/assert"
+)
+
+func TestDomain_Clone(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("domain_clone")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ requestData := linodego.DomainCloneOptions{
+ Domain: "linodego-domain-clone.com",
+ }
+
+ domainToCloneID := 123
+ base.MockPost(formatMockAPIPath("domains/%d/clone", domainToCloneID), fixtureData)
+
+ domain, err := base.Client.CloneDomain(context.Background(), domainToCloneID, requestData)
+
+ assert.NoError(t, err)
+
+ assert.Equal(t, "linodego-domain-clone.com", domain.Domain)
+ assert.Equal(t, "admin@example.org", domain.SOAEmail)
+}
+
+func TestDomain_Import(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("domain_import")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ requestData := linodego.DomainImportOptions{
+ Domain: "linodego-domain-import.com",
+ RemoteNameserver: "linodego-domain-import-nameserver.com",
+ }
+
+ base.MockPost("domains/import", fixtureData)
+
+ domain, err := base.Client.ImportDomain(context.Background(), requestData)
+
+ assert.NoError(t, err)
+
+ assert.Equal(t, "example.org", domain.Domain)
+ assert.Equal(t, "admin@example.org", domain.SOAEmail)
+}
diff --git a/test/unit/fixtures/account_availability_get.json b/test/unit/fixtures/account_availability_get.json
new file mode 100644
index 000000000..5f8a1be93
--- /dev/null
+++ b/test/unit/fixtures/account_availability_get.json
@@ -0,0 +1,11 @@
+{
+ "available": [
+ "Linodes",
+ "NodeBalancers"
+ ],
+ "region": "us-east",
+ "unavailable": [
+ "Kubernetes",
+ "Block Storage"
+ ]
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/account_availability_list.json b/test/unit/fixtures/account_availability_list.json
new file mode 100644
index 000000000..194d6a7df
--- /dev/null
+++ b/test/unit/fixtures/account_availability_list.json
@@ -0,0 +1,207 @@
+{
+ "data": [
+ {
+ "region": "us-central",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "us-west",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "us-southeast",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "us-east",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "eu-west",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "ap-south",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "eu-central",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "ap-northeast",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "ap-west",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "ca-central",
+ "available": ["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", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "fr-par",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "us-sea",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "br-gru",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "nl-ams",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "se-sto",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "es-mad",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "in-maa",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "jp-osa",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "it-mil",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "us-mia",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "id-cgk",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "us-lax",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "nz-akl-1",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "us-den-1",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "de-ham-1",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "fr-mrs-1",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "za-jnb-1",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "co-bog-1",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "mx-qro-1",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "us-hou-1",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "cl-scl-1",
+ "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": []
+ },
+ {
+ "region": "in-bom-2",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "de-fra-2",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "sg-sin-2",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ },
+ {
+ "region": "jp-tyo-3",
+ "available": ["Linodes", "NodeBalancers", "Block Storage", "Kubernetes"],
+ "unavailable": []
+ }
+ ],
+ "page": 1,
+ "pages": 1,
+ "results": 40
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/account_beta_get.json b/test/unit/fixtures/account_beta_get.json
new file mode 100644
index 000000000..577544b65
--- /dev/null
+++ b/test/unit/fixtures/account_beta_get.json
@@ -0,0 +1,8 @@
+{
+ "description": "This is an open public beta for an example feature.",
+ "ended": null,
+ "enrolled": "2023-09-11T00:00:00",
+ "id": "example_open",
+ "label": "Example Open Beta",
+ "started": "2023-07-11T00:00:00"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/account_beta_list.json b/test/unit/fixtures/account_beta_list.json
new file mode 100644
index 000000000..fb2a62d20
--- /dev/null
+++ b/test/unit/fixtures/account_beta_list.json
@@ -0,0 +1,15 @@
+{
+ "data": [
+ {
+ "description": "This is an open public beta for an example feature.",
+ "ended": null,
+ "enrolled": "2023-09-11T00:00:00",
+ "id": "example_open",
+ "label": "Example Open Beta",
+ "started": "2023-07-11T00:00:00"
+ }
+ ],
+ "page": 1,
+ "pages": 1,
+ "results": 1
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/account_logins_get.json b/test/unit/fixtures/account_logins_get.json
new file mode 100644
index 000000000..d5a9555c5
--- /dev/null
+++ b/test/unit/fixtures/account_logins_get.json
@@ -0,0 +1,8 @@
+{
+ "datetime": "2018-01-01T00:01:01",
+ "id": 1234,
+ "ip": "192.0.2.0",
+ "restricted": true,
+ "status": "successful",
+ "username": "example_user"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/account_logins_list.json b/test/unit/fixtures/account_logins_list.json
new file mode 100644
index 000000000..aa65f2d41
--- /dev/null
+++ b/test/unit/fixtures/account_logins_list.json
@@ -0,0 +1,15 @@
+{
+ "data": [
+ {
+ "datetime": "2018-01-01T00:01:01",
+ "id": 1234,
+ "ip": "192.0.2.0",
+ "restricted": true,
+ "status": "successful",
+ "username": "example_user"
+ }
+ ],
+ "page": 1,
+ "pages": 1,
+ "results": 1
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/account_notifications_list.json b/test/unit/fixtures/account_notifications_list.json
new file mode 100644
index 000000000..935ec1099
--- /dev/null
+++ b/test/unit/fixtures/account_notifications_list.json
@@ -0,0 +1,22 @@
+{
+ "data": [
+ {
+ "body": null,
+ "entity": {
+ "id": 3456,
+ "label": "Linode not booting.",
+ "type": "ticket",
+ "url": "/support/tickets/3456"
+ },
+ "label": "You have an important ticket open!",
+ "message": "You have an important ticket open!",
+ "severity": "major",
+ "type": "ticket_important",
+ "until": null,
+ "when": null
+ }
+ ],
+ "page": 1,
+ "pages": 1,
+ "results": 1
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/account_oauth_client_create.json b/test/unit/fixtures/account_oauth_client_create.json
new file mode 100644
index 000000000..51705d56c
--- /dev/null
+++ b/test/unit/fixtures/account_oauth_client_create.json
@@ -0,0 +1,9 @@
+{
+ "id": "2737bf16b39ab5d7b4a1",
+ "label": "Test_Client_1",
+ "public": false,
+ "redirect_uri": "https://example.org/oauth/callback",
+ "secret": "",
+ "status": "active",
+ "thumbnail_url": "https://api.linode.com/v4/account/clients/2737bf16b39ab5d7b4a1/thumbnail"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/account_oauth_client_get.json b/test/unit/fixtures/account_oauth_client_get.json
new file mode 100644
index 000000000..51705d56c
--- /dev/null
+++ b/test/unit/fixtures/account_oauth_client_get.json
@@ -0,0 +1,9 @@
+{
+ "id": "2737bf16b39ab5d7b4a1",
+ "label": "Test_Client_1",
+ "public": false,
+ "redirect_uri": "https://example.org/oauth/callback",
+ "secret": "",
+ "status": "active",
+ "thumbnail_url": "https://api.linode.com/v4/account/clients/2737bf16b39ab5d7b4a1/thumbnail"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/account_oauth_client_list.json b/test/unit/fixtures/account_oauth_client_list.json
new file mode 100644
index 000000000..488ce5266
--- /dev/null
+++ b/test/unit/fixtures/account_oauth_client_list.json
@@ -0,0 +1,16 @@
+{
+ "data": [
+ {
+ "id": "2737bf16b39ab5d7b4a1",
+ "label": "Test_Client_1",
+ "public": false,
+ "redirect_uri": "https://example.org/oauth/callback",
+ "secret": "",
+ "status": "active",
+ "thumbnail_url": "https://api.linode.com/v4/account/clients/2737bf16b39ab5d7b4a1/thumbnail"
+ }
+ ],
+ "page": 1,
+ "pages": 1,
+ "results": 1
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/account_oauth_client_reset.json b/test/unit/fixtures/account_oauth_client_reset.json
new file mode 100644
index 000000000..51705d56c
--- /dev/null
+++ b/test/unit/fixtures/account_oauth_client_reset.json
@@ -0,0 +1,9 @@
+{
+ "id": "2737bf16b39ab5d7b4a1",
+ "label": "Test_Client_1",
+ "public": false,
+ "redirect_uri": "https://example.org/oauth/callback",
+ "secret": "",
+ "status": "active",
+ "thumbnail_url": "https://api.linode.com/v4/account/clients/2737bf16b39ab5d7b4a1/thumbnail"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/account_oauth_client_update.json b/test/unit/fixtures/account_oauth_client_update.json
new file mode 100644
index 000000000..364622978
--- /dev/null
+++ b/test/unit/fixtures/account_oauth_client_update.json
@@ -0,0 +1,9 @@
+{
+ "id": "2737bf16b39ab5d7b4a1",
+ "label": "Test_Client_1_Updated",
+ "public": true,
+ "redirect_uri": "https://example_updated.org/oauth/callback",
+ "secret": "",
+ "status": "active",
+ "thumbnail_url": "https://api.linode.com/v4/account/clients/2737bf16b39ab5d7b4a1/thumbnail"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/account_service_transfers_get.json b/test/unit/fixtures/account_service_transfers_get.json
new file mode 100644
index 000000000..1074b7775
--- /dev/null
+++ b/test/unit/fixtures/account_service_transfers_get.json
@@ -0,0 +1,14 @@
+{
+ "created": "2021-02-11T16:37:03",
+ "entities": {
+ "linodes": [
+ 111,
+ 222
+ ]
+ },
+ "expiry": "2021-02-12T16:37:03",
+ "is_sender": true,
+ "status": "pending",
+ "token": "123E4567-E89B-12D3-A456-426614174000",
+ "updated": "2021-02-11T16:37:03"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/account_service_transfers_list.json b/test/unit/fixtures/account_service_transfers_list.json
new file mode 100644
index 000000000..46aa85914
--- /dev/null
+++ b/test/unit/fixtures/account_service_transfers_list.json
@@ -0,0 +1,21 @@
+{
+ "data": [
+ {
+ "created": "2021-02-11T16:37:03",
+ "entities": {
+ "linodes": [
+ 111,
+ 222
+ ]
+ },
+ "expiry": "2021-02-12T16:37:03",
+ "is_sender": true,
+ "status": "pending",
+ "token": "123E4567-E89B-12D3-A456-426614174000",
+ "updated": "2021-02-11T16:37:03"
+ }
+ ],
+ "page": 1,
+ "pages": 1,
+ "results": 1
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/account_service_transfers_request.json b/test/unit/fixtures/account_service_transfers_request.json
new file mode 100644
index 000000000..1074b7775
--- /dev/null
+++ b/test/unit/fixtures/account_service_transfers_request.json
@@ -0,0 +1,14 @@
+{
+ "created": "2021-02-11T16:37:03",
+ "entities": {
+ "linodes": [
+ 111,
+ 222
+ ]
+ },
+ "expiry": "2021-02-12T16:37:03",
+ "is_sender": true,
+ "status": "pending",
+ "token": "123E4567-E89B-12D3-A456-426614174000",
+ "updated": "2021-02-11T16:37:03"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/account_settings_get.json b/test/unit/fixtures/account_settings_get.json
new file mode 100644
index 000000000..38d5a68c9
--- /dev/null
+++ b/test/unit/fixtures/account_settings_get.json
@@ -0,0 +1,7 @@
+{
+ "managed": false,
+ "network_helper": true,
+ "longview_subscription": null,
+ "backups_enabled": true,
+ "object_storage": "active"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/account_settings_update.json b/test/unit/fixtures/account_settings_update.json
new file mode 100644
index 000000000..38d5a68c9
--- /dev/null
+++ b/test/unit/fixtures/account_settings_update.json
@@ -0,0 +1,7 @@
+{
+ "managed": false,
+ "network_helper": true,
+ "longview_subscription": null,
+ "backups_enabled": true,
+ "object_storage": "active"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/account_user_grants_get.json b/test/unit/fixtures/account_user_grants_get.json
new file mode 100644
index 000000000..dc3913d1c
--- /dev/null
+++ b/test/unit/fixtures/account_user_grants_get.json
@@ -0,0 +1,96 @@
+{
+ "database": [
+ {
+ "id": 123,
+ "label": "example-entity",
+ "permissions": "read_only"
+ }
+ ],
+ "domain": [
+ {
+ "id": 123,
+ "label": "example-entity",
+ "permissions": "read_only"
+ }
+ ],
+ "firewall": [
+ {
+ "id": 123,
+ "label": "example-entity",
+ "permissions": "read_only"
+ }
+ ],
+ "global": {
+ "account_access": "read_only",
+ "add_databases": true,
+ "add_domains": true,
+ "add_firewalls": true,
+ "add_images": true,
+ "add_linodes": true,
+ "add_longview": true,
+ "add_nodebalancers": true,
+ "add_placement_groups": true,
+ "add_stackscripts": true,
+ "add_volumes": true,
+ "add_vpcs": true,
+ "cancel_account": false,
+ "child_account_access": true,
+ "longview_subscription": true
+ },
+ "image": [
+ {
+ "id": 123,
+ "label": "example-entity",
+ "permissions": "read_only"
+ }
+ ],
+ "linode": [
+ {
+ "id": 123,
+ "label": "example-entity",
+ "permissions": "read_only"
+ }
+ ],
+ "longview": [
+ {
+ "id": 123,
+ "label": "example-entity",
+ "permissions": "read_only"
+ }
+ ],
+ "nodebalancer": [
+ {
+ "id": 123,
+ "label": "example-entity",
+ "permissions": "read_only"
+ }
+ ],
+ "placement_group": [
+ {
+ "id": 123,
+ "label": "example-entity",
+ "permissions": "read_only"
+ }
+ ],
+ "stackscript": [
+ {
+ "id": 123,
+ "label": "example-entity",
+ "permissions": "read_only"
+ }
+ ],
+ "volume": [
+ {
+ "id": 123,
+ "label": "example-entity",
+ "permissions": "read_only"
+ }
+ ],
+ "vpc": [
+ {
+ "id": 123,
+ "label": "example-entity",
+ "permissions": "read_only"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/account_user_grants_update.json b/test/unit/fixtures/account_user_grants_update.json
new file mode 100644
index 000000000..52c06a926
--- /dev/null
+++ b/test/unit/fixtures/account_user_grants_update.json
@@ -0,0 +1,96 @@
+{
+ "database": [
+ {
+ "id": 123,
+ "label": "example-entity",
+ "permissions": "read_only"
+ }
+ ],
+ "domain": [
+ {
+ "id": 123,
+ "label": "example-entity",
+ "permissions": "read_only"
+ }
+ ],
+ "firewall": [
+ {
+ "id": 123,
+ "label": "example-entity",
+ "permissions": "read_only"
+ }
+ ],
+ "global": {
+ "account_access": "read_write",
+ "add_databases": true,
+ "add_domains": true,
+ "add_firewalls": true,
+ "add_images": true,
+ "add_linodes": true,
+ "add_longview": true,
+ "add_nodebalancers": true,
+ "add_placement_groups": true,
+ "add_stackscripts": true,
+ "add_volumes": true,
+ "add_vpcs": true,
+ "cancel_account": false,
+ "child_account_access": true,
+ "longview_subscription": true
+ },
+ "image": [
+ {
+ "id": 123,
+ "label": "example-entity",
+ "permissions": "read_only"
+ }
+ ],
+ "linode": [
+ {
+ "id": 123,
+ "label": "example-entity",
+ "permissions": "read_only"
+ }
+ ],
+ "longview": [
+ {
+ "id": 123,
+ "label": "example-entity",
+ "permissions": "read_only"
+ }
+ ],
+ "nodebalancer": [
+ {
+ "id": 123,
+ "label": "example-entity",
+ "permissions": "read_only"
+ }
+ ],
+ "placement_group": [
+ {
+ "id": 123,
+ "label": "example-entity",
+ "permissions": "read_only"
+ }
+ ],
+ "stackscript": [
+ {
+ "id": 123,
+ "label": "example-entity",
+ "permissions": "read_only"
+ }
+ ],
+ "volume": [
+ {
+ "id": 123,
+ "label": "example-entity",
+ "permissions": "read_only"
+ }
+ ],
+ "vpc": [
+ {
+ "id": 123,
+ "label": "example-entity",
+ "permissions": "read_only"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/account_users_create.json b/test/unit/fixtures/account_users_create.json
new file mode 100644
index 000000000..883ee2949
--- /dev/null
+++ b/test/unit/fixtures/account_users_create.json
@@ -0,0 +1,16 @@
+{
+ "email": "example_user@linode.com",
+ "last_login": {
+ "login_datetime": "2018-01-01T01:01:01",
+ "status": "successful"
+ },
+ "password_created": "2018-01-01T01:01:01",
+ "restricted": true,
+ "ssh_keys": [
+ "home-pc",
+ "laptop"
+ ],
+ "tfa_enabled": true,
+ "username": "example_user",
+ "verified_phone_number": "+5555555555"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/account_users_get.json b/test/unit/fixtures/account_users_get.json
new file mode 100644
index 000000000..245574b1c
--- /dev/null
+++ b/test/unit/fixtures/account_users_get.json
@@ -0,0 +1,17 @@
+{
+ "email": "jperez@linode.com",
+ "last_login": {
+ "login_datetime": "2018-01-01T01:01:01",
+ "status": "successful"
+ },
+ "password_created": "2018-01-01T01:01:01",
+ "restricted": true,
+ "ssh_keys": [
+ "home-pc",
+ "laptop"
+ ],
+ "tfa_enabled": true,
+ "user_type": "parent",
+ "username": "jsmith",
+ "verified_phone_number": "+5555555555"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/account_users_list.json b/test/unit/fixtures/account_users_list.json
new file mode 100644
index 000000000..dbbb1c951
--- /dev/null
+++ b/test/unit/fixtures/account_users_list.json
@@ -0,0 +1,24 @@
+{
+ "data": [
+ {
+ "email": "jperez@linode.com",
+ "last_login": {
+ "login_datetime": "2018-01-01T01:01:01",
+ "status": "successful"
+ },
+ "password_created": "2018-01-01T01:01:01",
+ "restricted": true,
+ "ssh_keys": [
+ "home-pc",
+ "laptop"
+ ],
+ "tfa_enabled": true,
+ "user_type": "parent",
+ "username": "jsmith",
+ "verified_phone_number": "+5555555555"
+ }
+ ],
+ "page": 1,
+ "pages": 1,
+ "results": 1
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/account_users_update.json b/test/unit/fixtures/account_users_update.json
new file mode 100644
index 000000000..71b047318
--- /dev/null
+++ b/test/unit/fixtures/account_users_update.json
@@ -0,0 +1,17 @@
+{
+ "email": "jkowalski@linode.com",
+ "last_login": {
+ "login_datetime": "2018-01-01T01:01:01",
+ "status": "successful"
+ },
+ "password_created": "2018-01-01T01:01:01",
+ "restricted": true,
+ "ssh_keys": [
+ "home-pc",
+ "laptop"
+ ],
+ "tfa_enabled": true,
+ "user_type": "parent",
+ "username": "adevi",
+ "verified_phone_number": "+5555555555"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/domain_clone.json b/test/unit/fixtures/domain_clone.json
new file mode 100644
index 000000000..2aee5078d
--- /dev/null
+++ b/test/unit/fixtures/domain_clone.json
@@ -0,0 +1,18 @@
+{
+ "axfr_ips": [],
+ "description": null,
+ "domain": "linodego-domain-clone.com",
+ "expire_sec": 300,
+ "id": 1234,
+ "master_ips": [],
+ "refresh_sec": 300,
+ "retry_sec": 300,
+ "soa_email": "admin@example.org",
+ "status": "active",
+ "tags": [
+ "example tag",
+ "another example"
+ ],
+ "ttl_sec": 300,
+ "type": "master"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/domain_import.json b/test/unit/fixtures/domain_import.json
new file mode 100644
index 000000000..81848fbbc
--- /dev/null
+++ b/test/unit/fixtures/domain_import.json
@@ -0,0 +1,18 @@
+{
+ "axfr_ips": [],
+ "description": null,
+ "domain": "example.org",
+ "expire_sec": 300,
+ "id": 1234,
+ "master_ips": [],
+ "refresh_sec": 300,
+ "retry_sec": 300,
+ "soa_email": "admin@example.org",
+ "status": "active",
+ "tags": [
+ "example tag",
+ "another example"
+ ],
+ "ttl_sec": 300,
+ "type": "master"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/linodes_list.json b/test/unit/fixtures/linodes_list.json
index 0db4d7f4d..07d338cfe 100644
--- a/test/unit/fixtures/linodes_list.json
+++ b/test/unit/fixtures/linodes_list.json
@@ -32,7 +32,7 @@
"placement_group": {
"id": 528,
"label": "PG_Miami_failover",
- "migrating_to": 2468,
+ "migrating_to": "2468",
"placement_group_policy": "strict",
"placement_group_type": "anti-affinity:local"
},
diff --git a/test/unit/fixtures/object_storage_buckets_object_list.json b/test/unit/fixtures/object_storage_buckets_object_list.json
new file mode 100644
index 000000000..e071b5d43
--- /dev/null
+++ b/test/unit/fixtures/object_storage_buckets_object_list.json
@@ -0,0 +1,13 @@
+{
+ "data": [
+ {
+ "name": "example",
+ "size": 123,
+ "last_modified": "2018-01-02T03:04:05.757Z",
+ "etag": "9f254c71e28e033bf9e0e5262e3e72ab",
+ "owner": "bfc70ab2-e3d4-42a4-ad55-83921822270c"
+ }
+ ],
+ "next_marker": null,
+ "is_truncated": false
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/placement_group_assign.json b/test/unit/fixtures/placement_group_assign.json
new file mode 100644
index 000000000..299b48220
--- /dev/null
+++ b/test/unit/fixtures/placement_group_assign.json
@@ -0,0 +1,18 @@
+{
+ "id": 528,
+ "is_compliant": true,
+ "label": "PG_Miami_failover",
+ "members": [
+ {
+ "is_compliant": true,
+ "linode_id": 123
+ },
+ {
+ "is_compliant": true,
+ "linode_id": 456
+ }
+ ],
+ "placement_group_policy": "strict",
+ "placement_group_type": "anti-affinity:local",
+ "region": "us-mia"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/placement_group_create.json b/test/unit/fixtures/placement_group_create.json
new file mode 100644
index 000000000..7e30feb1e
--- /dev/null
+++ b/test/unit/fixtures/placement_group_create.json
@@ -0,0 +1,14 @@
+{
+ "id": 528,
+ "is_compliant": true,
+ "label": "PG_Miami_failover",
+ "members": [
+ {
+ "is_compliant": true,
+ "linode_id": 123
+ }
+ ],
+ "placement_group_policy": "strict",
+ "placement_group_type": "anti-affinity:local",
+ "region": "us-mia"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/placement_group_unassign.json b/test/unit/fixtures/placement_group_unassign.json
new file mode 100644
index 000000000..7e30feb1e
--- /dev/null
+++ b/test/unit/fixtures/placement_group_unassign.json
@@ -0,0 +1,14 @@
+{
+ "id": 528,
+ "is_compliant": true,
+ "label": "PG_Miami_failover",
+ "members": [
+ {
+ "is_compliant": true,
+ "linode_id": 123
+ }
+ ],
+ "placement_group_policy": "strict",
+ "placement_group_type": "anti-affinity:local",
+ "region": "us-mia"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/placement_group_update.json b/test/unit/fixtures/placement_group_update.json
new file mode 100644
index 000000000..9aa33f1ae
--- /dev/null
+++ b/test/unit/fixtures/placement_group_update.json
@@ -0,0 +1,14 @@
+{
+ "id": 528,
+ "is_compliant": true,
+ "label": "PG_Miami_failover_new",
+ "members": [
+ {
+ "is_compliant": true,
+ "linode_id": 123
+ }
+ ],
+ "placement_group_policy": "strict",
+ "placement_group_type": "anti-affinity:local",
+ "region": "us-mia"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/placement_groups_get.json b/test/unit/fixtures/placement_groups_get.json
new file mode 100644
index 000000000..2e35a8eab
--- /dev/null
+++ b/test/unit/fixtures/placement_groups_get.json
@@ -0,0 +1,26 @@
+{
+ "id": 528,
+ "is_compliant": true,
+ "label": "PG_Miami_failover",
+ "members": [
+ {
+ "is_compliant": true,
+ "linode_id": 123
+ }
+ ],
+ "migrations": {
+ "inbound": [
+ {
+ "linode_id": 123
+ }
+ ],
+ "outbound": [
+ {
+ "linode_id": 456
+ }
+ ]
+ },
+ "placement_group_policy": "strict",
+ "placement_group_type": "anti-affinity:local",
+ "region": "us-mia"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/placement_groups_list.json b/test/unit/fixtures/placement_groups_list.json
new file mode 100644
index 000000000..8ad61633d
--- /dev/null
+++ b/test/unit/fixtures/placement_groups_list.json
@@ -0,0 +1,33 @@
+{
+ "data": [
+ {
+ "id": 528,
+ "is_compliant": true,
+ "label": "PG_Miami_failover",
+ "members": [
+ {
+ "is_compliant": true,
+ "linode_id": 123
+ }
+ ],
+ "migrations": {
+ "inbound": [
+ {
+ "linode_id": 123
+ }
+ ],
+ "outbound": [
+ {
+ "linode_id": 456
+ }
+ ]
+ },
+ "placement_group_policy": "strict",
+ "placement_group_type": "anti-affinity:local",
+ "region": "us-mia"
+ }
+ ],
+ "page": 1,
+ "pages": 1,
+ "results": 1
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/profile_apps_get.json b/test/unit/fixtures/profile_apps_get.json
new file mode 100644
index 000000000..1c4fc757d
--- /dev/null
+++ b/test/unit/fixtures/profile_apps_get.json
@@ -0,0 +1,9 @@
+{
+ "created": "2018-01-01T00:01:01",
+ "expiry": "2018-01-15T00:01:01",
+ "id": 123,
+ "label": "example-app",
+ "scopes": "linodes:read_only",
+ "thumbnail_url": null,
+ "website": "example.org"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/profile_apps_list.json b/test/unit/fixtures/profile_apps_list.json
new file mode 100644
index 000000000..2a8db864a
--- /dev/null
+++ b/test/unit/fixtures/profile_apps_list.json
@@ -0,0 +1,16 @@
+{
+ "data": [
+ {
+ "created": "2018-01-01T00:01:01",
+ "expiry": "2018-01-15T00:01:01",
+ "id": 123,
+ "label": "example-app",
+ "scopes": "linodes:read_only",
+ "thumbnail_url": null,
+ "website": "example.org"
+ }
+ ],
+ "page": 1,
+ "pages": 1,
+ "results": 1
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/profile_devices_get.json b/test/unit/fixtures/profile_devices_get.json
new file mode 100644
index 000000000..d37354cac
--- /dev/null
+++ b/test/unit/fixtures/profile_devices_get.json
@@ -0,0 +1,8 @@
+{
+ "created": "2018-01-01T01:01:01",
+ "expiry": "2018-01-31T01:01:01",
+ "id": 123,
+ "last_authenticated": "2018-01-05T12:57:12",
+ "last_remote_addr": "203.0.113.1",
+ "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36 Vivaldi/2.1.1337.36"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/profile_devices_list.json b/test/unit/fixtures/profile_devices_list.json
new file mode 100644
index 000000000..38e0796d1
--- /dev/null
+++ b/test/unit/fixtures/profile_devices_list.json
@@ -0,0 +1,15 @@
+{
+ "data": [
+ {
+ "created": "2018-01-01T01:01:01",
+ "expiry": "2018-01-31T01:01:01",
+ "id": 123,
+ "last_authenticated": "2018-01-05T12:57:12",
+ "last_remote_addr": "203.0.113.1",
+ "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36 Vivaldi/2.1.1337.36"
+ }
+ ],
+ "page": 1,
+ "pages": 1,
+ "results": 1
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/profile_preferences_get.json b/test/unit/fixtures/profile_preferences_get.json
new file mode 100644
index 000000000..88b3d7123
--- /dev/null
+++ b/test/unit/fixtures/profile_preferences_get.json
@@ -0,0 +1,4 @@
+{
+ "key1": "value1",
+ "key2": "value2"
+}
\ No newline at end of file
diff --git a/test/unit/fixtures/profile_preferences_update.json b/test/unit/fixtures/profile_preferences_update.json
new file mode 100644
index 000000000..031c89981
--- /dev/null
+++ b/test/unit/fixtures/profile_preferences_update.json
@@ -0,0 +1,4 @@
+{
+ "key1": "value1_new",
+ "key2": "value2_new"
+}
\ No newline at end of file
diff --git a/test/unit/instance_disks_test.go b/test/unit/instance_disks_test.go
index f3d86fd5d..2363a5592 100644
--- a/test/unit/instance_disks_test.go
+++ b/test/unit/instance_disks_test.go
@@ -2,9 +2,10 @@ package unit
import (
"context"
+ "testing"
+
"github.com/linode/linodego"
"github.com/stretchr/testify/assert"
- "testing"
)
func TestInstance_Disks_Clone(t *testing.T) {
diff --git a/test/unit/instance_nodebalancers_test.go b/test/unit/instance_nodebalancers_test.go
index 7a575858f..67397c29b 100644
--- a/test/unit/instance_nodebalancers_test.go
+++ b/test/unit/instance_nodebalancers_test.go
@@ -2,8 +2,9 @@ package unit
import (
"context"
- "github.com/stretchr/testify/assert"
"testing"
+
+ "github.com/stretchr/testify/assert"
)
func TestInstance_NodeBalancers_List(t *testing.T) {
diff --git a/test/unit/instance_test.go b/test/unit/instance_test.go
index bc250995c..c04e19e55 100644
--- a/test/unit/instance_test.go
+++ b/test/unit/instance_test.go
@@ -38,6 +38,8 @@ func TestListInstances(t *testing.T) {
assert.Equal(t, "g6-standard-1", linode.Type)
assert.Equal(t, "us-east", linode.Region)
assert.Equal(t, 4096, linode.Specs.Memory)
+ assert.Equal(t, "2018-01-01 00:01:01 +0000 UTC", linode.Backups.LastSuccessful.String())
+ assert.Equal(t, "2468", linode.PlacementGroup.MigratingTo)
}
func TestInstance_Migrate(t *testing.T) {
@@ -91,3 +93,16 @@ func TestInstance_Get_MonthlyTransfer(t *testing.T) {
assert.Equal(t, 22956600198, stats.BytesOut)
assert.Equal(t, 53427677318, stats.BytesTotal)
}
+
+func TestInstance_Upgrade(t *testing.T) {
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockPost("linode/instances/12345/mutate", nil)
+
+ err := base.Client.UpgradeInstance(context.Background(), 12345, linodego.InstanceUpgradeOptions{
+ AllowAutoDiskResize: true,
+ })
+ assert.NoError(t, err)
+}
diff --git a/test/unit/object_storage_test.go b/test/unit/object_storage_test.go
index 44d32e991..61ee86161 100644
--- a/test/unit/object_storage_test.go
+++ b/test/unit/object_storage_test.go
@@ -4,6 +4,8 @@ import (
"context"
"testing"
+ "github.com/stretchr/testify/assert"
+
"github.com/jarcoal/httpmock"
)
@@ -20,3 +22,26 @@ func TestObjectStorage_Cancel(t *testing.T) {
t.Fatal(err)
}
}
+
+func TestObjectStorage_ObjectList(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("object_storage_buckets_object_list")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockGet("object-storage/buckets/us-east/bucket-name/object-list", fixtureData)
+
+ content, err := base.Client.ListObjectStorageBucketContents(context.Background(), "us-east", "bucket-name", nil)
+ if err != nil {
+ t.Fatalf("Error getting content: %v", err)
+ }
+
+ assert.Equal(t, false, content.IsTruncated)
+ assert.Nil(t, content.NextMarker)
+ assert.Equal(t, "example", content.Data[0].Name)
+ assert.Equal(t, "bfc70ab2-e3d4-42a4-ad55-83921822270c", content.Data[0].Owner)
+ assert.Equal(t, 123, content.Data[0].Size)
+ assert.Equal(t, "9f254c71e28e033bf9e0e5262e3e72ab", content.Data[0].Etag)
+}
diff --git a/test/unit/placement_group_test.go b/test/unit/placement_group_test.go
new file mode 100644
index 000000000..7283ca1d4
--- /dev/null
+++ b/test/unit/placement_group_test.go
@@ -0,0 +1,186 @@
+package unit
+
+import (
+ "context"
+ "testing"
+
+ "github.com/jarcoal/httpmock"
+ "github.com/linode/linodego"
+ "github.com/stretchr/testify/assert"
+)
+
+func TestPlacementGroups_List(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("placement_groups_list")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockGet("placement/groups", fixtureData)
+
+ pgs, err := base.Client.ListPlacementGroups(context.Background(), nil)
+ assert.NoError(t, err)
+
+ assert.Equal(t, 1, len(pgs))
+ pg := pgs[0]
+
+ assert.Equal(t, 528, pg.ID)
+ assert.Equal(t, true, pg.IsCompliant)
+ assert.Equal(t, "PG_Miami_failover", pg.Label)
+ assert.Equal(t, true, pg.Members[0].IsCompliant)
+ assert.Equal(t, 123, pg.Members[0].LinodeID)
+ assert.Equal(t, 123, pg.Migrations.Inbound[0].LinodeID)
+ assert.Equal(t, 456, pg.Migrations.Outbound[0].LinodeID)
+ assert.Equal(t, linodego.PlacementGroupPolicy("strict"), pg.PlacementGroupPolicy)
+ assert.Equal(t, linodego.PlacementGroupType("anti-affinity:local"), pg.PlacementGroupType)
+ assert.Equal(t, "us-mia", pg.Region)
+}
+
+func TestPlacementGroups_Get(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("placement_groups_get")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockGet("placement/groups/528", fixtureData)
+
+ pg, err := base.Client.GetPlacementGroup(context.Background(), 528)
+ assert.NoError(t, err)
+
+ assert.Equal(t, 528, pg.ID)
+ assert.Equal(t, true, pg.IsCompliant)
+ assert.Equal(t, "PG_Miami_failover", pg.Label)
+ assert.Equal(t, true, pg.Members[0].IsCompliant)
+ assert.Equal(t, 123, pg.Members[0].LinodeID)
+ assert.Equal(t, 123, pg.Migrations.Inbound[0].LinodeID)
+ assert.Equal(t, 456, pg.Migrations.Outbound[0].LinodeID)
+ assert.Equal(t, linodego.PlacementGroupPolicy("strict"), pg.PlacementGroupPolicy)
+ assert.Equal(t, linodego.PlacementGroupType("anti-affinity:local"), pg.PlacementGroupType)
+ assert.Equal(t, "us-mia", pg.Region)
+}
+
+func TestPlacementGroups_Delete(t *testing.T) {
+ client := createMockClient(t)
+
+ httpmock.RegisterRegexpResponder("DELETE", mockRequestURL(t, "placement/groups/528"), httpmock.NewStringResponder(200, "{}"))
+
+ if err := client.DeletePlacementGroup(context.Background(), 528); err != nil {
+ t.Fatal(err)
+ }
+}
+
+func TestPlacementGroups_Update(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("placement_group_update")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ requestData := linodego.PlacementGroupUpdateOptions{
+ Label: "PG_Miami_failover_new",
+ }
+
+ base.MockPut("placement/groups/528", fixtureData)
+
+ pg, err := base.Client.UpdatePlacementGroup(context.Background(), 528, requestData)
+ assert.NoError(t, err)
+
+ assert.Equal(t, 528, pg.ID)
+ assert.Equal(t, true, pg.IsCompliant)
+ assert.Equal(t, "PG_Miami_failover_new", pg.Label)
+ assert.Equal(t, true, pg.Members[0].IsCompliant)
+ assert.Equal(t, 123, pg.Members[0].LinodeID)
+ assert.Equal(t, linodego.PlacementGroupPolicy("strict"), pg.PlacementGroupPolicy)
+ assert.Equal(t, linodego.PlacementGroupType("anti-affinity:local"), pg.PlacementGroupType)
+ assert.Equal(t, "us-mia", pg.Region)
+}
+
+func TestPlacementGroups_Create(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("placement_group_create")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ requestData := linodego.PlacementGroupCreateOptions{
+ Label: "PG_Miami_failover",
+ Region: "us-mia",
+ PlacementGroupType: linodego.PlacementGroupType("anti-affinity:local"),
+ PlacementGroupPolicy: linodego.PlacementGroupPolicy("strict"),
+ }
+
+ base.MockPost("placement/groups", fixtureData)
+
+ pg, err := base.Client.CreatePlacementGroup(context.Background(), requestData)
+ assert.NoError(t, err)
+
+ assert.Equal(t, 528, pg.ID)
+ assert.Equal(t, true, pg.IsCompliant)
+ assert.Equal(t, "PG_Miami_failover", pg.Label)
+ assert.Equal(t, true, pg.Members[0].IsCompliant)
+ assert.Equal(t, 123, pg.Members[0].LinodeID)
+ assert.Equal(t, linodego.PlacementGroupPolicy("strict"), pg.PlacementGroupPolicy)
+ assert.Equal(t, linodego.PlacementGroupType("anti-affinity:local"), pg.PlacementGroupType)
+ assert.Equal(t, "us-mia", pg.Region)
+}
+
+func TestPlacementGroups_Assign(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("placement_group_assign")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ requestData := linodego.PlacementGroupAssignOptions{
+ Linodes: []int{456},
+ }
+
+ base.MockPost("placement/groups/528/assign", fixtureData)
+
+ pg, err := base.Client.AssignPlacementGroupLinodes(context.Background(), 528, requestData)
+ assert.NoError(t, err)
+
+ assert.Equal(t, 528, pg.ID)
+ assert.Equal(t, true, pg.IsCompliant)
+ assert.Equal(t, "PG_Miami_failover", pg.Label)
+ assert.Equal(t, true, pg.Members[0].IsCompliant)
+ assert.Equal(t, 123, pg.Members[0].LinodeID)
+ assert.Equal(t, true, pg.Members[1].IsCompliant)
+ assert.Equal(t, 456, pg.Members[1].LinodeID)
+ assert.Equal(t, linodego.PlacementGroupPolicy("strict"), pg.PlacementGroupPolicy)
+ assert.Equal(t, linodego.PlacementGroupType("anti-affinity:local"), pg.PlacementGroupType)
+ assert.Equal(t, "us-mia", pg.Region)
+}
+
+func TestPlacementGroups_Unassign(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("placement_group_unassign")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ requestData := linodego.PlacementGroupUnAssignOptions{
+ Linodes: []int{456},
+ }
+
+ base.MockPost("placement/groups/528/unassign", fixtureData)
+
+ pg, err := base.Client.UnassignPlacementGroupLinodes(context.Background(), 528, requestData)
+ assert.NoError(t, err)
+
+ assert.Equal(t, 528, pg.ID)
+ assert.Equal(t, true, pg.IsCompliant)
+ assert.Equal(t, "PG_Miami_failover", pg.Label)
+ assert.Equal(t, true, pg.Members[0].IsCompliant)
+ assert.Equal(t, 123, pg.Members[0].LinodeID)
+ assert.Equal(t, linodego.PlacementGroupPolicy("strict"), pg.PlacementGroupPolicy)
+ assert.Equal(t, linodego.PlacementGroupType("anti-affinity:local"), pg.PlacementGroupType)
+ assert.Equal(t, "us-mia", pg.Region)
+}
diff --git a/test/unit/profile_apps_test.go b/test/unit/profile_apps_test.go
new file mode 100644
index 000000000..57c5400a2
--- /dev/null
+++ b/test/unit/profile_apps_test.go
@@ -0,0 +1,60 @@
+package unit
+
+import (
+ "context"
+ "testing"
+
+ "github.com/jarcoal/httpmock"
+ "github.com/stretchr/testify/assert"
+)
+
+func TestProfileApps_Get(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("profile_apps_get")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockGet("profile/apps/123", fixtureData)
+
+ app, err := base.Client.GetProfileApp(context.Background(), 123)
+ assert.NoError(t, err)
+
+ assert.Equal(t, 123, app.ID)
+ assert.Equal(t, "example-app", app.Label)
+ assert.Equal(t, "linodes:read_only", app.Scopes)
+ assert.Equal(t, "example.org", app.Website)
+}
+
+func TestProfileApps_List(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("profile_apps_list")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockGet("profile/apps", fixtureData)
+
+ apps, err := base.Client.ListProfileApps(context.Background(), nil)
+ assert.NoError(t, err)
+
+ assert.Equal(t, 1, len(apps))
+ app := apps[0]
+
+ assert.Equal(t, 123, app.ID)
+ assert.Equal(t, "example-app", app.Label)
+ assert.Equal(t, "linodes:read_only", app.Scopes)
+ assert.Equal(t, "example.org", app.Website)
+}
+
+func TestProfileApps_Delete(t *testing.T) {
+ client := createMockClient(t)
+
+ httpmock.RegisterRegexpResponder("DELETE", mockRequestURL(t, "profile/apps/123"), httpmock.NewStringResponder(200, "{}"))
+
+ if err := client.DeleteProfileApp(context.Background(), 123); err != nil {
+ t.Fatal(err)
+ }
+}
diff --git a/test/unit/profile_devices_test.go b/test/unit/profile_devices_test.go
new file mode 100644
index 000000000..b58a480cd
--- /dev/null
+++ b/test/unit/profile_devices_test.go
@@ -0,0 +1,58 @@
+package unit
+
+import (
+ "context"
+ "testing"
+
+ "github.com/jarcoal/httpmock"
+ "github.com/stretchr/testify/assert"
+)
+
+func TestProfileDevices_Get(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("profile_devices_get")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockGet("profile/devices/123", fixtureData)
+
+ device, err := base.Client.GetProfileDevice(context.Background(), 123)
+ assert.NoError(t, err)
+
+ assert.Equal(t, 123, device.ID)
+ assert.Equal(t, "203.0.113.1", device.LastRemoteAddr)
+ assert.Equal(t, "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36 Vivaldi/2.1.1337.36", device.UserAgent)
+}
+
+func TestProfileDevices_List(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("profile_devices_list")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockGet("profile/devices", fixtureData)
+
+ devices, err := base.Client.ListProfileDevices(context.Background(), nil)
+ assert.NoError(t, err)
+
+ assert.Equal(t, 1, len(devices))
+ device := devices[0]
+
+ assert.Equal(t, 123, device.ID)
+ assert.Equal(t, "203.0.113.1", device.LastRemoteAddr)
+ assert.Equal(t, "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36 Vivaldi/2.1.1337.36", device.UserAgent)
+}
+
+func TestProfileDevices_Delete(t *testing.T) {
+ client := createMockClient(t)
+
+ httpmock.RegisterRegexpResponder("DELETE", mockRequestURL(t, "profile/devices/123"), httpmock.NewStringResponder(200, "{}"))
+
+ if err := client.DeleteProfileDevice(context.Background(), 123); err != nil {
+ t.Fatal(err)
+ }
+}
diff --git a/test/unit/profile_preferences_test.go b/test/unit/profile_preferences_test.go
new file mode 100644
index 000000000..d14a8f9d2
--- /dev/null
+++ b/test/unit/profile_preferences_test.go
@@ -0,0 +1,54 @@
+package unit
+
+import (
+ "context"
+ "testing"
+
+ "github.com/linode/linodego"
+ "github.com/stretchr/testify/assert"
+)
+
+func TestProfilePreferences_Get(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("profile_preferences_get")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockGet("profile/preferences", fixtureData)
+
+ preferences, err := base.Client.GetProfilePreferences(context.Background())
+ assert.NoError(t, err)
+
+ expectedPreferences := linodego.ProfilePreferences{
+ "key1": "value1",
+ "key2": "value2",
+ }
+ assert.Equal(t, expectedPreferences, *preferences)
+}
+
+func TestProfilePreferences_update(t *testing.T) {
+ fixtureData, err := fixtures.GetFixture("profile_preferences_update")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ requestData := linodego.ProfilePreferences{
+ "key1": "value1_new",
+ "key2": "value2_new",
+ }
+
+ base.MockPut("profile/preferences", fixtureData)
+
+ preferences, err := base.Client.UpdateProfilePreferences(context.Background(), requestData)
+ assert.NoError(t, err)
+
+ expectedPreferences := linodego.ProfilePreferences{
+ "key1": "value1_new",
+ "key2": "value2_new",
+ }
+ assert.Equal(t, expectedPreferences, *preferences)
+}
diff --git a/test/unit/profile_test.go b/test/unit/profile_test.go
index 8099a150b..ca82f52a6 100644
--- a/test/unit/profile_test.go
+++ b/test/unit/profile_test.go
@@ -2,9 +2,10 @@ package unit
import (
"context"
+ "testing"
+
"github.com/linode/linodego"
"github.com/stretchr/testify/assert"
- "testing"
)
func TestProfile_Get(t *testing.T) {
diff --git a/test/unit/support_test.go b/test/unit/support_test.go
index 1bd64dbbc..62a4bec74 100644
--- a/test/unit/support_test.go
+++ b/test/unit/support_test.go
@@ -2,9 +2,10 @@ package unit
import (
"context"
+ "testing"
+
"github.com/linode/linodego"
"github.com/stretchr/testify/assert"
- "testing"
)
func TestSupportTicket_List(t *testing.T) {
diff --git a/test/unit/util_test.go b/test/unit/util_test.go
index 8653b8095..5614b51e0 100644
--- a/test/unit/util_test.go
+++ b/test/unit/util_test.go
@@ -1,6 +1,8 @@
package unit
import (
+ "fmt"
+ "net/url"
"regexp"
"testing"
@@ -21,3 +23,16 @@ func mockRequestURL(t *testing.T, path string) *regexp.Regexp {
func createMockClient(t *testing.T) *linodego.Client {
return testutil.CreateMockClient(t, linodego.NewClient)
}
+
+func formatMockAPIPath(format string, args ...any) string {
+ escapedArgs := make([]any, len(args))
+ for i, arg := range args {
+ if typeStr, ok := arg.(string); ok {
+ arg = url.PathEscape(typeStr)
+ }
+
+ escapedArgs[i] = arg
+ }
+
+ return fmt.Sprintf(format, escapedArgs...)
+}
diff --git a/volumes.go b/volumes.go
index 684e718a7..f20181f47 100644
--- a/volumes.go
+++ b/volumes.go
@@ -35,6 +35,8 @@ type Volume struct {
LinodeID *int `json:"linode_id"`
FilesystemPath string `json:"filesystem_path"`
Tags []string `json:"tags"`
+ HardwareType string `json:"hardware_type"`
+ LinodeLabel string `json:"linode_label"`
Created *time.Time `json:"-"`
Updated *time.Time `json:"-"`