Skip to content

Commit 4ad7b11

Browse files
Add GET /object-storage/transfer/
1 parent 68de937 commit 4ad7b11

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

openapi.yaml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11850,6 +11850,46 @@ 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_write
11872+
responses:
11873+
'200':
11874+
description: A paginated list of buckets you own.
11875+
content:
11876+
application/json:
11877+
schema:
11878+
properties:
11879+
used:
11880+
type: integer
11881+
description: >
11882+
The amount of outbound data transfer used by your account's Object Storage buckets,
11883+
in GB, for the current month’s billing cycle.
11884+
example: 12956600198
11885+
readOnly: true
11886+
default:
11887+
$ref: '#/components/responses/ErrorResponse'
11888+
x-code-samples:
11889+
- lang: Shell
11890+
source: >
11891+
curl -H "Authorization: Bearer $TOKEN" \
11892+
https://api.linode.com/v4/object-storage/transfer/
1185311893
/profile:
1185411894
x-linode-cli-command: profile
1185511895
get:

0 commit comments

Comments
 (0)