import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Job resource in Oracle Cloud Infrastructure Data Science service. * * Gets a job. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testJob = oci.datascience.getJob({ * jobId: testJobOciDatascienceJob.id, * }); * ``` */ export declare function getJob(args: GetJobArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getJob. */ export interface GetJobArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the job. */ jobId: string; } /** * A collection of values returned by getJob. */ export interface GetJobResult { readonly artifactContentDisposition: string; readonly artifactContentLength: string; readonly artifactContentMd5: string; readonly artifactLastModified: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where you want to create the job. */ readonly compartmentId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the project. */ readonly createdBy: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; readonly deleteRelatedJobRuns: boolean; /** * A short description of the job. */ readonly description: string; /** * A user-friendly display name for the resource. */ readonly displayName: string; readonly emptyArtifact: boolean; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the job. */ readonly id: string; readonly jobArtifact: string; /** * The job configuration details */ readonly jobConfigurationDetails: outputs.DataScience.GetJobJobConfigurationDetail[]; /** * Environment configuration to capture job runtime dependencies. */ readonly jobEnvironmentConfigurationDetails: outputs.DataScience.GetJobJobEnvironmentConfigurationDetail[]; readonly jobId: string; /** * The job infrastructure configuration details (shape, block storage, etc.) */ readonly jobInfrastructureConfigurationDetails: outputs.DataScience.GetJobJobInfrastructureConfigurationDetail[]; /** * Logging configuration for resource. */ readonly jobLogConfigurationDetails: outputs.DataScience.GetJobJobLogConfigurationDetail[]; /** * The job node configuration details */ readonly jobNodeConfigurationDetails: outputs.DataScience.GetJobJobNodeConfigurationDetail[]; /** * Collection of JobStorageMountConfigurationDetails. */ readonly jobStorageMountConfigurationDetailsLists: outputs.DataScience.GetJobJobStorageMountConfigurationDetailsList[]; /** * The state of the job. */ readonly lifecycleDetails: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the job with. */ readonly projectId: string; /** * The state of the job. */ readonly state: string; /** * The date and time the resource was created in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2020-08-06T21:10:29.41Z */ readonly timeCreated: string; } /** * This data source provides details about a specific Job resource in Oracle Cloud Infrastructure Data Science service. * * Gets a job. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testJob = oci.datascience.getJob({ * jobId: testJobOciDatascienceJob.id, * }); * ``` */ export declare function getJobOutput(args: GetJobOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getJob. */ export interface GetJobOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the job. */ jobId: pulumi.Input; } //# sourceMappingURL=getJob.d.ts.map