Skip to content

Commit 9059df6

Browse files
authored
Merge pull request #450 from linode/release-4.93.0
Release 4.93.0
2 parents a1d565e + 50e5c77 commit 9059df6

File tree

1 file changed

+69
-7
lines changed

1 file changed

+69
-7
lines changed

openapi.yaml

Lines changed: 69 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
openapi: 3.0.1
22
info:
3-
version: 4.92.0
3+
version: 4.93.0
44

55
title: Linode API
66
description: |
@@ -2985,6 +2985,61 @@ paths:
29852985
- lang: CLI
29862986
source: >
29872987
linode-cli domains delete 1234
2988+
/domains/{domainId}/zone-file:
2989+
x-linode-cli-command: domains
2990+
parameters:
2991+
- name: domainId
2992+
in: path
2993+
description: ID of the Domain.
2994+
required: true
2995+
schema:
2996+
type: string
2997+
get:
2998+
x-linode-grant: read_only
2999+
tags:
3000+
- Domains
3001+
summary: Domain Zone File View
3002+
description: >
3003+
Returns the zone file for the last rendered zone for the specified domain.
3004+
operationId: getDomainZone
3005+
x-linode-cli-action: zone-file
3006+
security:
3007+
- personalAccessToken: []
3008+
- oauth:
3009+
- domains:read_only
3010+
responses:
3011+
'200':
3012+
description: |
3013+
An array containing the lines of the domain zone file.
3014+
content:
3015+
application/json:
3016+
schema:
3017+
properties:
3018+
zone_file:
3019+
type: array
3020+
items:
3021+
type: string
3022+
example:
3023+
- "; example.com [123]"
3024+
- "$TTL 864000"
3025+
- "@ IN SOA ns1.linode.com. user.example.com. 2021000066 14400 14400 1209600 86400"
3026+
- "@ NS ns1.linode.com."
3027+
- "@ NS ns2.linode.com."
3028+
- "@ NS ns3.linode.com."
3029+
- "@ NS ns4.linode.com."
3030+
- "@ NS ns5.linode.com."
3031+
description: |
3032+
The lines of the zone file for the last rendered zone for this domain.
3033+
default:
3034+
$ref: '#/components/responses/ErrorResponse'
3035+
x-code-samples:
3036+
- lang: Shell
3037+
source: >
3038+
curl -H "Authorization: Bearer $TOKEN" \
3039+
https://api.linode.com/v4/domains/123/zone-file
3040+
- lang: CLI
3041+
source: >
3042+
linode-cli domains zone-file 123
29883043
/domains/import:
29893044
post:
29903045
x-linode-grant: read_write
@@ -15998,11 +16053,6 @@ components:
1599816053
$ref: '#/components/schemas/Disk/properties/label'
1599916054
filesystem:
1600016055
$ref: '#/components/schemas/Disk/properties/filesystem'
16001-
read_only:
16002-
type: boolean
16003-
description: >
16004-
If true, this Disk is read-only.
16005-
example: false
1600616056
image:
1600716057
type: string
1600816058
description: >
@@ -17259,6 +17309,7 @@ components:
1725917309
x-linode-cli-display: 6
1726017310
type:
1726117311
type: string
17312+
x-linode-filterable: true
1726217313
description: >
1726317314
How the Image was created. "Manual" Images can be created at any time.
1726417315
"Automatic" images are created automatically from a deleted Linode.
@@ -17377,8 +17428,9 @@ components:
1737717428
x-linode-cli-display: 6
1737817429
type:
1737917430
type: string
17431+
x-linode-filterable: true
1738017432
description: >
17381-
How the Image was created. Manual Images can be created at any time.
17433+
How the Image was created. "Manual" Images can be created at any time.
1738217434
"Automatic" Images are created automatically from a deleted Linode.
1738317435
enum:
1738417436
- manual
@@ -18123,6 +18175,7 @@ components:
1812318175
example: '2018-01-01T00:01:01'
1812418176
readOnly: true
1812518177
ipv4:
18178+
x-linode-filterable: true
1812618179
type: array
1812718180
format: ipv4
1812818181
items:
@@ -19571,6 +19624,7 @@ components:
1957119624
readOnly: true
1957219625
x-linode-cli-display: 4
1957319626
ipv4:
19627+
x-linode-filterable: true
1957419628
type: string
1957519629
format: ip
1957619630
description: >
@@ -20978,6 +21032,14 @@ components:
2097821032
label: Enter the DB password
2097921033
name: DB_PASSWORD
2098021034
example: hunter2
21035+
mine:
21036+
type: boolean
21037+
x-linode-filterable: true
21038+
description: |
21039+
Returns `true` if this StackScript is owned by the account of the user making the request, and the user
21040+
making the request is unrestricted or has access to this StackScript.
21041+
readOnly: true
21042+
example: true
2098121043
StatsDataAvailable:
2098221044
type: object
2098321045
description: >

0 commit comments

Comments
 (0)