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
See our [Authentication Schema](/#section/Authentication) for
97
-
information on scopes and authorization/token URLs.
102
+
| Security Scheme Type: | Oauth2 |
103
+
|-----------------------|--------|
104
+
| **AuthorizationCode Oauth Flow** | **Authorization URL:** https://login.linode.com/oauth/authorize<br />**Token URL:** https://login.linode.com/oauth/token<br />**Scopes:**<br /><ul><li>`account:read_only` - Allows access to GET information about your Account.</li><li>`account:read_write` - Allows access to all endpoints related to your Account.</li><li>`domains:read_only` - Allows access to GET Domains on your Account.</li><li>`domains:read_write` - Allows access to all Domain endpoints.</li><li>`events:read_only` - Allows access to GET your Events.</li><li>`events:read_write` - Allows access to all endpoints related to your Events.</li><li>`images:read_only` - Allows access to GET your Images.</li><li>`images:read_write` - Allows access to all endpoints related to your Images.</li><li>`ips:read_only` - Allows access to GET your ips.</li><li>`ips:read_write` - Allows access to all endpoints related to your ips.</li><li>`linodes:read_only` - Allows access to GET Linodes on your Account.</li><li>`linodes:read_write` - Allow access to all endpoints related to your Linodes.</li><li>`longview:read_only` - Allows access to GET your Longview Clients.</li><li>`longview:read_write` - Allows access to all endpoints related to your Longview Clients.</li><li>`nodebalancers:read_only` - Allows access to GET NodeBalancers on your Account.</li><li>`nodebalancers:read_write` - Allows access to all NodeBalancer endpoints.</li><li>`stackscripts:read_only` - Allows access to GET your StackScripts.</li><li>`stackscripts:read_write` - Allows access to all endpoints related to your StackScripts.</li><li>`volumes:read_only` - Allows access to GET your Volumes.</li><li>`volumes:read_write` - Allows access to all endpoints related to your Volumes.</li></ul><br />|
98
105
99
106
# Requests
100
107
@@ -2678,14 +2685,11 @@ paths:
2678
2685
content:
2679
2686
application/json:
2680
2687
schema:
2681
-
type: object
2682
2688
required:
2683
2689
- type
2684
2690
- region
2685
-
allOf:
2686
-
- $ref: '#/components/schemas/LinodeRequest'
2687
-
- $ref: '#/components/schemas/LinodeBase'
2688
-
- properties:
2691
+
type: object
2692
+
properties:
2689
2693
backup_id:
2690
2694
type: integer
2691
2695
example: 1234
@@ -2715,13 +2719,13 @@ paths:
2715
2719
type:
2716
2720
type: string
2717
2721
description: >
2718
-
The type of Linode to deploy.
2719
-
readOnly: false
2722
+
The [Linode Type](#operation/getLinodeTypes) of the Linode
2723
+
you are creating.
2720
2724
region:
2721
2725
type: string
2722
2726
description: >
2723
-
The Region to deploy this Linode in.
2724
-
readOnly: false
2727
+
The [Region](#operation/getRegions) where the Linode
0 commit comments