Package version:

Represents the properties of an HCI Collect Log job.

interface HciCollectLogJobProperties {
    deploymentMode?: string;
    endTimeUtc?: any;
    fromDate: Date;
    jobId?: string;
    jobType: "CollectLog";
    lastLogGenerated?: any;
    provisioningState?: string;
    reportedProperties?: LogCollectionReportedProperties;
    startTimeUtc?: any;
    status?: string;
    toDate: Date;
}

Hierarchy (view full)

Properties

deploymentMode?: string

Deployment mode to trigger job.

endTimeUtc?: any

The UTC date and time at which the job completed.

fromDate: Date

From date for log collection.

jobId?: string

Unique, immutable job id.

jobType

Job Type to support polymorphic resource.

lastLogGenerated?: any

To date for log collection.

provisioningState?: string

Job provisioning state

reportedProperties?: LogCollectionReportedProperties

log collection job reported properties.

startTimeUtc?: any

The UTC date and time at which the job started.

status?: string

Status of Edge device job.

toDate: Date

To date for log collection.