Class BucketsRequestBuilder.BucketsRequestBuilderGetQueryParameters
This endpoint will return the buckets owned by the application. This endpoint supports pagination.
public class BucketsRequestBuilder.BucketsRequestBuilderGetQueryParameters
- Inheritance
-
BucketsRequestBuilder.BucketsRequestBuilderGetQueryParameters
- Inherited Members
Properties
Limit
Limit to the response size,Acceptable values: 1-100 Default = 10
[QueryParameter("limit")]
public int? Limit { get; set; }
Property Value
- int?
Region
The region where the bucket residesAcceptable values: US
, EMEA
Default is US
[Obsolete("This property is deprecated, use RegionAsGetRegionQueryParameterType instead")]
[QueryParameter("region")]
public string? Region { get; set; }
Property Value
RegionAsGetRegionQueryParameterType
The region where the bucket residesAcceptable values: US
, EMEA
Default is US
[QueryParameter("region")]
public GetRegionQueryParameterType? RegionAsGetRegionQueryParameterType { get; set; }
Property Value
StartAt
Key to use as an offset to continue pagination This is typically the last bucket key found in a preceding GET buckets response
[QueryParameter("startAt")]
public string? StartAt { get; set; }