You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openapi.yaml
+28-17Lines changed: 28 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -548,16 +548,17 @@ paths:
548
548
get:
549
549
tags:
550
550
- account
551
+
parameters:
552
+
- $ref: '#/components/parameters/pageOffset'
553
+
- $ref: '#/components/parameters/pageSize'
551
554
summary: Account Availability
552
555
description: |
553
-
Returns service unavailability for all available regions.
556
+
Returns a paginated list of the services available to you, for all Linode regions.
554
557
555
-
Only authorized Users can access this endpoint.
556
-
557
-
*This endpoint is currently in **Beta**, and should not be used for production workloads.*
558
+
**Note**: Only authorized Users can access this endpoint.
558
559
operationId: getAvailability
559
560
servers:
560
-
- url: https://api.linode.com/v4beta
561
+
- url: https://api.linode.com/v4
561
562
security:
562
563
- personalAccessToken: []
563
564
- oauth:
@@ -567,7 +568,7 @@ paths:
567
568
responses:
568
569
'200':
569
570
description: |
570
-
Returns a paginated list of regions and their unavailable resources.
571
+
List of regions and the services available in each.
571
572
content:
572
573
application/json:
573
574
schema:
@@ -594,7 +595,7 @@ paths:
594
595
parameters:
595
596
- name: id
596
597
in: path
597
-
description: The id of the data center.
598
+
description: The slug for the applicable data center. Run the [GET /regions](/docs/api/regions/#regions-list) operation to view the slug for each data center.
598
599
required: true
599
600
schema:
600
601
type: string
@@ -603,12 +604,12 @@ paths:
603
604
- account
604
605
summary: Region Service Availability
605
606
description: |
606
-
Returns a single region's service availability.
607
+
View the available services for your account in a specific region.
607
608
608
-
Only authorized Users can access this.
609
+
**Note**: Only authorized users can access this.
609
610
operationId: getAccountAvailability
610
611
servers:
611
-
- url: https://api.linode.com/v4beta
612
+
- url: https://api.linode.com/v4
612
613
security:
613
614
- personalAccessToken: []
614
615
- oauth:
@@ -617,7 +618,7 @@ paths:
617
618
x-linode-grant: read_only
618
619
responses:
619
620
'200':
620
-
description: Returns an object with a region and the region's unavailable resources.
621
+
description: The services available in the specified region.
621
622
content:
622
623
application/json:
623
624
schema:
@@ -20846,20 +20847,30 @@ components:
20846
20847
type: string
20847
20848
readOnly: true
20848
20849
description: >
20849
-
Displays the data center represented by a slug.
20850
+
The Akamai cloud computing data center (region), represented by a slug value. You can view a full list of regions and their associated slugs via the [GET /regions](/docs/api/regions/#regions-list) endpoint.
20850
20851
example: us-east
20851
20852
x-linode-cli-display: 1
20852
-
unavailable:
20853
+
available:
20853
20854
type: array
20855
+
items:
20856
+
type: string
20854
20857
readOnly: true
20855
-
description: >
20856
-
A list of strings of unavailable services.
20858
+
description: |
20859
+
A list of services *available* to your account in the `region`.
20857
20860
example:
20858
20861
- "Linodes"
20859
-
- "Block Storage"
20862
+
- "NodeBalancers"
20863
+
unavailable:
20864
+
type: array
20860
20865
items:
20861
20866
type: string
20862
-
x-linode-cli-display: 2
20867
+
readOnly: true
20868
+
description: >
20869
+
A list of services *unavailable* to your account in the `region`.
0 commit comments