import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Task Record resource in Oracle Cloud Infrastructure Fleet Apps Management service. * * Gets information for the specified task record. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testTaskRecord = oci.fleetappsmanagement.getTaskRecord({ * taskRecordId: testTaskRecordOciFleetAppsManagementTaskRecord.id, * }); * ``` */ export declare function getTaskRecord(args: GetTaskRecordArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getTaskRecord. */ export interface GetTaskRecordArgs { /** * The OCID of the task record. */ taskRecordId: string; } /** * A collection of values returned by getTaskRecord. */ export interface GetTaskRecordResult { readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * The description of the argument. */ readonly description: string; /** * The details of the task. */ readonly details: outputs.FleetAppsManagement.GetTaskRecordDetail[]; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource` */ readonly displayName: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * The OCID of the resource. */ readonly id: string; /** * A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. */ readonly lifecycleDetails: string; /** * Associated region */ readonly resourceRegion: string; /** * The current state of the task record. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; readonly taskRecordId: string; /** * The time this resource was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The time this resource was last updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; /** * Task type. */ readonly type: string; /** * The version of the task record. */ readonly version: string; } /** * This data source provides details about a specific Task Record resource in Oracle Cloud Infrastructure Fleet Apps Management service. * * Gets information for the specified task record. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testTaskRecord = oci.fleetappsmanagement.getTaskRecord({ * taskRecordId: testTaskRecordOciFleetAppsManagementTaskRecord.id, * }); * ``` */ export declare function getTaskRecordOutput(args: GetTaskRecordOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getTaskRecord. */ export interface GetTaskRecordOutputArgs { /** * The OCID of the task record. */ taskRecordId: pulumi.Input; } //# sourceMappingURL=getTaskRecord.d.ts.map