Class: AsyncOperation
Represents an AsyncOperation.
Implements
Constructors
constructor
• new AsyncOperation(properties?
): AsyncOperation
Constructs a new AsyncOperation.
Parameters
Name | Type | Description |
---|---|---|
properties? | IAsyncOperation | Properties to set |
Returns
Properties
checkDuration
• Optional
checkDuration: null
| IDuration
The recommended duration to check back for an update in the operation's state
Implementation of
failureReason
• failureReason: string
If the operation failed, the reason for the failure
Implementation of
finishedTime
• Optional
finishedTime: null
| ITimestamp
The date and time when the operation completed
Implementation of
id
• id: string
The operation id
Implementation of
operationInput
• Optional
operationInput: null
| IAny
The input to the operation being performed
(-- api-linter: core::0146::any=disabled --)
Implementation of
IAsyncOperation.operationInput
operationType
• operationType: string
The type of operation being performed
Implementation of
startedTime
• Optional
startedTime: null
| ITimestamp
The date and time when the operation initiated
Implementation of
state
• state: string
The current state of this operation Possible values are: pending, in_progress, failed, cancelled, fulfilled
Implementation of
Methods
toJSON
▸ toJSON(): Object
Converts this AsyncOperation to JSON.
Returns
Object
JSON object
create
▸ create(properties?
): AsyncOperation
Creates a new AsyncOperation instance using the specified properties.
Parameters
Name | Type | Description |
---|---|---|
properties? | IAsyncOperation | Properties to set |
Returns
AsyncOperation instance
decode
▸ decode(reader
, length?
): AsyncOperation
Decodes an AsyncOperation message from the specified reader or buffer.
Parameters
Name | Type | Description |
---|---|---|
reader | Uint8Array | Reader | Reader or buffer to decode from |
length? | number | Message length if known beforehand |