Class Signeds3uploadRequestBuilder.Signeds3uploadRequestBuilderGetQueryParameters
- Namespace
- Autodesk.DataManagement.OSS.Oss.V2.Buckets.Item.Objects.Item.Signeds3upload
- Assembly
- Autodesk.DataManagement.dll
Gets a signed URL to upload an object in a single request, or an array of signed URLs with which to upload an object in multiple parts.
public class Signeds3uploadRequestBuilder.Signeds3uploadRequestBuilderGetQueryParameters
- Inheritance
-
Signeds3uploadRequestBuilder.Signeds3uploadRequestBuilderGetQueryParameters
- Inherited Members
Properties
FirstPart
Index of first part in the parts collection.
[QueryParameter("firstPart")]
public int? FirstPart { get; set; }
Property Value
- int?
MinutesExpiration
The custom expiration time within the 1 to 60 minutes range, if not specified, default is 2 minutes.
[QueryParameter("minutesExpiration")]
public int? MinutesExpiration { get; set; }
Property Value
- int?
Parts
For a multipart upload, the number of chunk upload URLs to return. If X is provided, the response will include chunk URLs from 1 to X. If none provided, the response will include only a single URL with which to upload an entire object.
[QueryParameter("parts")]
public int? Parts { get; set; }
Property Value
- int?
UploadKey
The identifier of a previously-initiated upload, in order to request more chunk upload URLs for the same upload. This must match the uploadKey
returned by a previous call to this endpoint where the client requested more than one part URL. If none provided, OSS will initiate a new upload entirely.
[QueryParameter("uploadKey")]
public string? UploadKey { get; set; }