import * as pulumi from "@pulumi/pulumi"; /** * Gets the details and status of an analytics export job. If the export job is still in progress, its `state` is set to "running". After the export job has completed successfully, its `state` is set to "completed". If the export job fails, its `state` is set to `failed`. */ export declare function getExport(args: GetExportArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetExportArgs { environmentId: string; exportId: string; organizationId: string; } export interface GetExportResult { /** * Time the export job was created. */ readonly created: string; /** * Name of the datastore that is the destination of the export job [datastore] */ readonly datastoreName: string; /** * Description of the export job. */ readonly description: string; /** * Error is set when export fails */ readonly error: string; /** * Execution time for this export job. If the job is still in progress, it will be set to the amount of time that has elapsed since`created`, in seconds. Else, it will set to (`updated` - `created`), in seconds. */ readonly executionTime: string; /** * Display name of the export job. */ readonly name: string; /** * Self link of the export job. A URI that can be used to retrieve the status of an export job. Example: `/organizations/myorg/environments/myenv/analytics/exports/9cfc0d85-0f30-46d6-ae6f-318d0cb961bd` */ readonly self: string; /** * Status of the export job. Valid values include `enqueued`, `running`, `completed`, and `failed`. */ readonly state: string; /** * Time the export job was last updated. */ readonly updated: string; } /** * Gets the details and status of an analytics export job. If the export job is still in progress, its `state` is set to "running". After the export job has completed successfully, its `state` is set to "completed". If the export job fails, its `state` is set to `failed`. */ export declare function getExportOutput(args: GetExportOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetExportOutputArgs { environmentId: pulumi.Input; exportId: pulumi.Input; organizationId: pulumi.Input; }