DigitalTwinsModelFactory.ImportJob Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of ImportJob.
public static Azure.DigitalTwins.Core.ImportJob ImportJob(string id = default, Uri inputBlobUri = default, Uri outputBlobUri = default, Azure.DigitalTwins.Core.ImportJobStatus? status = default, DateTimeOffset? createdDateTime = default, DateTimeOffset? lastActionDateTime = default, DateTimeOffset? finishedDateTime = default, DateTimeOffset? purgeDateTime = default, Azure.ResponseError error = default);
static member ImportJob : string * Uri * Uri * Nullable<Azure.DigitalTwins.Core.ImportJobStatus> * Nullable<DateTimeOffset> * Nullable<DateTimeOffset> * Nullable<DateTimeOffset> * Nullable<DateTimeOffset> * Azure.ResponseError -> Azure.DigitalTwins.Core.ImportJob
Public Shared Function ImportJob (Optional id As String = Nothing, Optional inputBlobUri As Uri = Nothing, Optional outputBlobUri As Uri = Nothing, Optional status As Nullable(Of ImportJobStatus) = Nothing, Optional createdDateTime As Nullable(Of DateTimeOffset) = Nothing, Optional lastActionDateTime As Nullable(Of DateTimeOffset) = Nothing, Optional finishedDateTime As Nullable(Of DateTimeOffset) = Nothing, Optional purgeDateTime As Nullable(Of DateTimeOffset) = Nothing, Optional error As ResponseError = Nothing) As ImportJob
Parameters
- id
- String
The identifier of the import job.
- inputBlobUri
- Uri
The path to the input Azure storage blob that contains file(s) describing the operations to perform in the job.
- outputBlobUri
- Uri
The path to the output Azure storage blob that will contain the errors and progress logs of import job.
- status
- Nullable<ImportJobStatus>
Status of the job.
- createdDateTime
- Nullable<DateTimeOffset>
Start time of the job. The timestamp is in RFC3339 format: yyyy-MM-ddTHH:mm:ssZ.
- lastActionDateTime
- Nullable<DateTimeOffset>
Last time service performed any action from the job. The timestamp is in RFC3339 format: yyyy-MM-ddTHH:mm:ssZ.
- finishedDateTime
- Nullable<DateTimeOffset>
End time of the job. The timestamp is in RFC3339 format: yyyy-MM-ddTHH:mm:ssZ.
- purgeDateTime
- Nullable<DateTimeOffset>
Time at which job will be purged by the service from the system. The timestamp is in RFC3339 format: yyyy-MM-ddTHH:mm:ssZ.
- error
- ResponseError
Details of the error(s) that occurred executing the import job.
Returns
A new ImportJob instance for mocking.