1
1
openapi: 3.0.1
2
2
info:
3
- version: 4.157.0
3
+ version: 4.157.1
4
4
5
5
title: Linode API
6
6
description: |
@@ -12196,14 +12196,7 @@ paths:
12196
12196
content:
12197
12197
application/json:
12198
12198
schema:
12199
- allOf:
12200
- - $ref: '#/components/schemas/PaginationEnvelope'
12201
- - type: object
12202
- properties:
12203
- data:
12204
- type: array
12205
- items:
12206
- $ref: '#/components/schemas/IPAddress'
12199
+ $ref: '#/components/schemas/IPAddressesListResponse'
12207
12200
default:
12208
12201
$ref: '#/components/responses/ErrorResponse'
12209
12202
x-code-samples:
@@ -21481,7 +21474,6 @@ components:
21481
21474
The reverse DNS assigned to this address. For public IPv4 addresses,
21482
21475
this will be set to a default value provided by Linode if not
21483
21476
explicitly set.
21484
- x-linode-filterable: true
21485
21477
x-linode-cli-display: 4
21486
21478
example: test.example.org
21487
21479
nullable: true
@@ -21502,7 +21494,6 @@ components:
21502
21494
The Region this IP address resides in.
21503
21495
example: us-east
21504
21496
readOnly: true
21505
- x-linode-filterable: true
21506
21497
x-linode-cli-display: 5
21507
21498
IPAddressesAssignRequest:
21508
21499
type: object
@@ -21547,6 +21538,99 @@ components:
21547
21538
with at least one public address and no more than one
21548
21539
private address once all assignments have been made.
21549
21540
example: 123
21541
+ IPAddressesListResponse:
21542
+ description: The response data for the IP Addresses List (GET /networking/ips) command.
21543
+ allOf:
21544
+ - $ref: '#/components/schemas/PaginationEnvelope'
21545
+ - type: object
21546
+ properties:
21547
+ data:
21548
+ type: array
21549
+ items:
21550
+ type: object
21551
+ description: >
21552
+ An IP address that exists in Linode's system, either IPv4 or IPv6, specific to the response for the IP Addresses List command.
21553
+ properties:
21554
+ address:
21555
+ type: string
21556
+ format: ip
21557
+ description: >
21558
+ The IP address.
21559
+ example: 192.0.2.141
21560
+ readOnly: true
21561
+ x-linode-filterable: true
21562
+ x-linode-cli-display: 1
21563
+ gateway:
21564
+ type: string
21565
+ nullable: true
21566
+ format: ip
21567
+ description: >
21568
+ The default gateway for this address.
21569
+ example: 192.0.2.1
21570
+ readOnly: true
21571
+ subnet_mask:
21572
+ type: string
21573
+ format: ip
21574
+ description: >
21575
+ The mask that separates host bits from network bits for this address.
21576
+ example: 255.255.255.0
21577
+ readOnly: true
21578
+ prefix:
21579
+ type: integer
21580
+ description: >
21581
+ The number of bits set in the subnet mask.
21582
+ example: 24
21583
+ x-linode-filterable: true
21584
+ readOnly: true
21585
+ type:
21586
+ type: string
21587
+ enum:
21588
+ - ipv4
21589
+ - ipv6
21590
+ - ipv6/pool
21591
+ - ipv6/range
21592
+ description: >
21593
+ The type of address this is.
21594
+ example: ipv4
21595
+ readOnly: true
21596
+ x-linode-filterable: true
21597
+ x-linode-cli-display: 2
21598
+ public:
21599
+ type: boolean
21600
+ description: >
21601
+ Whether this is a public or private IP address.
21602
+ example: true
21603
+ readOnly: true
21604
+ x-linode-cli-display: 3
21605
+ rdns:
21606
+ type: string
21607
+ description: >
21608
+ The reverse DNS assigned to this address. For public IPv4 addresses,
21609
+ this will be set to a default value provided by Linode if not
21610
+ explicitly set.
21611
+ x-linode-filterable: true
21612
+ x-linode-cli-display: 4
21613
+ example: test.example.org
21614
+ nullable: true
21615
+ linode_id:
21616
+ type: integer
21617
+ description: >
21618
+ The ID of the Linode this address currently belongs to. For IPv4
21619
+ addresses, this is by default the Linode that this address was
21620
+ assigned to on creation, and these addresses my be moved using the
21621
+ [/networking/ipv4/assign](/docs/api/networking/#ips-to-linodes-assign)
21622
+ endpoint. For SLAAC and link-local addresses, this value may not be changed.
21623
+ example: 123
21624
+ readOnly: true
21625
+ x-linode-cli-display: 6
21626
+ region:
21627
+ type: string
21628
+ description: >
21629
+ The Region this IP address resides in.
21630
+ example: us-east
21631
+ readOnly: true
21632
+ x-linode-filterable: true
21633
+ x-linode-cli-display: 5
21550
21634
IPAddressesShareRequest:
21551
21635
type: object
21552
21636
description: A request object IP Addresses Share (POST /networking/ips/share)
@@ -21639,7 +21723,6 @@ components:
21639
21723
The Region this address resides in.
21640
21724
example: us-east
21641
21725
readOnly: true
21642
- x-linode-filterable: true
21643
21726
x-linode-cli-display: 5
21644
21727
IPAddressV6LinkLocal:
21645
21728
type: object
0 commit comments