Skip to content

Commit 4862b5f

Browse files
authored
Drop v4beta and LA notice for Limits Visibility (#752)
1 parent 6ac31fd commit 4862b5f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

object_storage_quota.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,17 @@ type ObjectStorageQuotaUsage struct {
2222
}
2323

2424
// ListObjectStorageQuotas lists the active ObjectStorage-related quotas applied to your account.
25-
// Object Storage Quota related features are under v4beta and may not currently be available to all users.
2625
func (c *Client) ListObjectStorageQuotas(ctx context.Context, opts *ListOptions) ([]ObjectStorageQuota, error) {
2726
return getPaginatedResults[ObjectStorageQuota](ctx, c, formatAPIPath("object-storage/quotas"), opts)
2827
}
2928

3029
// GetObjectStorageQuota gets information about a specific ObjectStorage-related quota on your account.
31-
// Object Storage Quota related features are under v4beta and may not currently be available to all users.
3230
func (c *Client) GetObjectStorageQuota(ctx context.Context, quotaID string) (*ObjectStorageQuota, error) {
3331
e := formatAPIPath("object-storage/quotas/%s", quotaID)
3432
return doGETRequest[ObjectStorageQuota](ctx, c, e)
3533
}
3634

3735
// GetObjectStorageQuotaUsage gets usage data for a specific ObjectStorage Quota resource you can have on your account and the current usage for that resource.
38-
// Object Storage Quota related features are under v4beta and may not currently be available to all users.
3936
func (c *Client) GetObjectStorageQuotaUsage(ctx context.Context, quotaID string) (*ObjectStorageQuotaUsage, error) {
4037
e := formatAPIPath("object-storage/quotas/%s/usage", quotaID)
4138
return doGETRequest[ObjectStorageQuotaUsage](ctx, c, e)

0 commit comments

Comments
 (0)