-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from autodesk-platform-services/DAS-209
[DAS 209] - Added Regions enum, Removed Inline models and Accumlated Docs team changes
- Loading branch information
Showing
75 changed files
with
3,003 additions
and
4,147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
|
||
/** | ||
* Access for signed resource Acceptable values: read, write, readwrite Default value: read | ||
* @export | ||
* @enum {string} | ||
*/ | ||
|
||
export const Access = { | ||
Read: 'Read', | ||
Write: 'Write', | ||
ReadWrite: 'ReadWrite' | ||
} as const; | ||
|
||
export type Access = typeof Access[keyof typeof Access]; | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import { Status } from './status'; | ||
|
||
/** | ||
* | ||
* @export | ||
* @interface BatchCompletedResultsParts | ||
*/ | ||
export interface BatchCompletedResultsParts { | ||
/** | ||
* The index of the first part in the multipart upload. | ||
* @type {number} | ||
* @memberof BatchCompletedResultsParts | ||
*/ | ||
'firstPart'?: number; | ||
/** | ||
* | ||
* @type {Status} | ||
* @memberof BatchCompletedResultsParts | ||
*/ | ||
'status'?: Status; | ||
/** | ||
* The size of the corresponding part detected in S3. | ||
* @type {number} | ||
* @memberof BatchCompletedResultsParts | ||
*/ | ||
'size'?: number; | ||
/** | ||
* The eTag of the detected part in S3. | ||
* @type {string} | ||
* @memberof BatchCompletedResultsParts | ||
*/ | ||
'eTag'?: string; | ||
} | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import { BatchCompletedResultsParts } from './batch-completed-results-parts'; | ||
|
||
/** | ||
* | ||
* @export | ||
* @interface BatchCompletedResults | ||
*/ | ||
export interface BatchCompletedResults { | ||
/** | ||
* If this attribute is not returned, completion has succeeded. If the value of this attribute is \"error\", completion failed.\' | ||
* @type {string} | ||
* @memberof BatchCompletedResults | ||
*/ | ||
'status'?: string; | ||
/** | ||
* The bucket key of the bucket the object was uploaded to. | ||
* @type {string} | ||
* @memberof BatchCompletedResults | ||
*/ | ||
'bucketKey'?: string; | ||
/** | ||
* The URL-encoded human friendly name of the object. | ||
* @type {string} | ||
* @memberof BatchCompletedResults | ||
*/ | ||
'objectKey'?: string; | ||
/** | ||
* An identifier (URN) that uniquely and persistently identifies the object. | ||
* @type {string} | ||
* @memberof BatchCompletedResults | ||
*/ | ||
'objectId'?: string; | ||
/** | ||
* The total amount of storage space occupied by the object, in bytes. | ||
* @type {number} | ||
* @memberof BatchCompletedResults | ||
*/ | ||
'size'?: number; | ||
/** | ||
* The format of the data stored within the object, expressed as a MIME type. This attribute is returned only if it was specified when the object was uploaded. | ||
* @type {string} | ||
* @memberof BatchCompletedResults | ||
*/ | ||
'contentType'?: string; | ||
/** | ||
* The Content-Disposition value for the uploaded object as recorded within OSS. This attribute is returned only if it was specified when the object was uploaded. | ||
* @type {string} | ||
* @memberof BatchCompletedResults | ||
*/ | ||
'contentDisposition'?: string; | ||
/** | ||
* The Content-Encoding value for the uploaded object as recorded within OSS. This attribute is returned only if it was specified when the object was uploaded. | ||
* @type {string} | ||
* @memberof BatchCompletedResults | ||
*/ | ||
'contentEncoding'?: string; | ||
/** | ||
* The Cache-Control value for the uploaded object as recorded within OSS. This attribute is returned only if it was specified when the object was uploaded. | ||
* @type {string} | ||
* @memberof BatchCompletedResults | ||
*/ | ||
'cacheControl'?: string; | ||
/** | ||
* An array containing the status of each part, indicating any issues with eTag or size mismatch issues. | ||
* @type {Array<BatchCompletedResultsParts>} | ||
* @memberof BatchCompletedResults | ||
*/ | ||
'parts'?: Array<BatchCompletedResultsParts>; | ||
/** | ||
* The reason for the failure, if the status is ``error``. | ||
* @type {string} | ||
* @memberof BatchCompletedResults | ||
*/ | ||
'reason'?: string; | ||
} | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.