import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Pipeline resource in Oracle Cloud Infrastructure Data Science service. * * Gets a Pipeline by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPipeline = oci.datascience.getPipeline({ * pipelineId: testPipelineOciDatasciencePipeline.id, * }); * ``` */ export declare function getPipeline(args: GetPipelineArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPipeline. */ export interface GetPipelineArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the pipeline. */ pipelineId: string; } /** * A collection of values returned by getPipeline. */ export interface GetPipelineResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where you want to create the pipeline. */ readonly compartmentId: string; /** * The configuration details of a pipeline. */ readonly configurationDetails: outputs.DataScience.GetPipelineConfigurationDetail[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the pipeline. */ 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; }; /** * If set to true will delete pipeline runs which are in a terminal state. */ readonly deleteRelatedPipelineRuns: boolean; /** * A short description of the step. */ readonly description: string; /** * A user-friendly display name for the resource. */ readonly displayName: string; /** * 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 pipeline. */ readonly id: string; /** * The infrastructure configuration details of a pipeline or a step. */ readonly infrastructureConfigurationDetails: outputs.DataScience.GetPipelineInfrastructureConfigurationDetail[]; /** * 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; /** * The pipeline log configuration details. */ readonly logConfigurationDetails: outputs.DataScience.GetPipelineLogConfigurationDetail[]; /** * Parameters used in the pipeline. */ readonly parameters: { [key: string]: string; }; readonly pipelineId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the pipeline with. */ readonly projectId: string; /** * The current state of the pipeline. */ readonly state: string; readonly stepArtifacts: outputs.DataScience.GetPipelineStepArtifact[]; /** * Array of step details for each step. */ readonly stepDetails: outputs.DataScience.GetPipelineStepDetail[]; /** * The storage mount details to mount to the instance running the pipeline step. */ readonly storageMountConfigurationDetailsLists: outputs.DataScience.GetPipelineStorageMountConfigurationDetailsList[]; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: 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; /** * The date and time the resource was updated in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2020-08-06T21:10:29.41Z */ readonly timeUpdated: string; } /** * This data source provides details about a specific Pipeline resource in Oracle Cloud Infrastructure Data Science service. * * Gets a Pipeline by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPipeline = oci.datascience.getPipeline({ * pipelineId: testPipelineOciDatasciencePipeline.id, * }); * ``` */ export declare function getPipelineOutput(args: GetPipelineOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPipeline. */ export interface GetPipelineOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the pipeline. */ pipelineId: pulumi.Input; } //# sourceMappingURL=getPipeline.d.ts.map