Skip to content

Updated docs for 2018-04-23 release #92

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/data/objects/account.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,14 @@ schema:
type: Float
description: This account's balance (in US Dollars).
value: 0.00
credit_card:
type: object
description: Information about your on-file credit card (used for payments)
last_four:
type: String
value: 1111
description: The last four digits of your on-file credit card.
expiry:
type: String
value: 11/2022
description: The expiration month and year of your on-file credit card.
15 changes: 15 additions & 0 deletions src/data/objects/nodebalancer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,18 @@ schema:
type: Datetime
value: "2017-09-30T11:21:01"
description: When this NodeBalancer was last updated.
transfer:
type: object
description: Transfer statistics for this NodeBalancer for the current month.
in:
type: Float
value: 3821.6655349731445
description: Inbound transfer
out:
type: Float
value: 241188.2196378708
description: Output transfer
total:
type: Float
value: 245009.8851728439445
description: Total transfer (in + out)
6 changes: 6 additions & 0 deletions src/data/objects/volume.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ schema:
type: Integer
description: The ID of the linode this volume is attached to.
value: 456
filesystem_path:
type: String
value: /dev/disk/by-id/scsi-0Linode_Volume_my-volume
description: >
The full filesystem path for the Volume based on the Volume's label. Path
is /dev/disk/by-id/scsi-0Linode_Volume_ + Volume label.
enums:
VolumeStatus:
creating: creating
Expand Down
24 changes: 24 additions & 0 deletions src/getting_started/changelogs/Changelogs.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,30 @@ export default function Authentication() {
<section>
<p>As releases are made Changelogs will be published here.</p>
</section>
<section>
<h2>2018-04-23</h2>
<hr /><br />
<b>Features:</b>
<ul>
<li>Adds transfer to NodeBalancer GET endpoints
<ul>
<li>added a `transfer` envelope to NodeBalancer JSON response</li>
<li>contains, `in`, `out`, and `total`</li>
</ul>
</li>
<li>Return on-file credit card details
<ul>
<li>adds credit card envelope for `last_four` and `expiry` to GET /account</li>
</ul>
</li>
<li>Added filesystem_path to Volume responses</li>
</ul>
<b>Bugfixes:</b>
<ul>
<li>Fix filtering GET /account/events - filtering on created/id</li>
<li>Fixed 500 on networking endpoints for linodes without ipv6</li>
</ul>
</section>
<section>
<h2>2018-04-02</h2>
<hr /><br />
Expand Down