Skip to content

Commit 0901749

Browse files
Merge pull request #353 from leslitagordita/obj-transfer-view
Add GET /object-storage/transfer/
2 parents dcc0b5b + ac7b8ed commit 0901749

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

openapi.yaml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11850,6 +11850,47 @@ paths:
1185011850
source: >
1185111851
linode-cli object-storage ssl-delete \
1185211852
us-east-1 example-bucket
11853+
/object-storage/transfer:
11854+
get:
11855+
operationId: getObjectStorageTransfer
11856+
x-linode-cli-skip: true
11857+
servers:
11858+
- url: https://api.linode.com/v4
11859+
summary: Object Storage Transfer View
11860+
description: |
11861+
The amount of outbound data transfer used by your account's Object Storage buckets.
11862+
Object Storage adds 1 terabyte of outbound data transfer to your data transfer pool.
11863+
See the [Object Storage Pricing and Limitations](/docs/guides/pricing-and-limitations/)
11864+
guide for details on Object Storage transfer quotas.
11865+
11866+
tags:
11867+
- Object Storage
11868+
security:
11869+
- personalAccessToken: []
11870+
- oauth:
11871+
- object_storage:read_only
11872+
responses:
11873+
'200':
11874+
description: >
11875+
Returns the amount of outbound data transfer used by your account's Object Storage buckets.
11876+
content:
11877+
application/json:
11878+
schema:
11879+
properties:
11880+
used:
11881+
type: integer
11882+
description: >
11883+
The amount of outbound data transfer used by your account's Object Storage buckets,
11884+
in GB, for the current month’s billing cycle.
11885+
example: 12956600198
11886+
readOnly: true
11887+
default:
11888+
$ref: '#/components/responses/ErrorResponse'
11889+
x-code-samples:
11890+
- lang: Shell
11891+
source: >
11892+
curl -H "Authorization: Bearer $TOKEN" \
11893+
https://api.linode.com/v4/object-storage/transfer/
1185311894
/profile:
1185411895
x-linode-cli-command: profile
1185511896
get:

0 commit comments

Comments
 (0)