import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Gdp Pipeline resource in Oracle Cloud Infrastructure Gdp service. * * Retrieves a pipeline by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testGdpPipeline = oci.oci.getGdpGdpPipeline({ * gdpPipelineId: testGdpPipelineOciGdpGdpPipeline.id, * env: gdpEnv, * }); * ``` */ export declare function getGdpGdpPipeline(args: GetGdpGdpPipelineArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getGdpGdpPipeline. */ export interface GetGdpGdpPipelineArgs { /** * The environment where the pipeline resides. Valid values are COMMERCIAL or USGOV. Defaults to COMMERCIAL. */ env?: string; /** * Unique pipeline identifier. */ gdpPipelineId: string; } /** * A collection of values returned by getGdpGdpPipeline. */ export interface GetGdpGdpPipelineResult { /** * The KMS vault OCID used for cryptographic approvals of transfers. */ readonly approvalKeyVaultId: string; /** * Authorization information about the pipeline being configured. */ readonly authorizationDetails: string; /** * Configuration information about the buckets used for this pipeline. */ readonly bucketDetails: outputs.oci.GetGdpGdpPipelineBucketDetail[]; /** * The OCID of the compartment. */ 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; }; /** * Short field input by customer for a description of the data pipeline use-case. */ readonly description: string; /** * Pipeline short name. */ readonly displayName: string; readonly env?: string; /** * List of file types allowed to be transferred in the pipeline according to the authorization details (e.g. .pdf, .xml, .doc). */ readonly fileTypes: 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; }; readonly gdpPipelineId: string; /** * The OCID of the pipeline. */ readonly id: string; /** * Determines whether file transfers need to go through an approval workflow. */ readonly isApprovalNeeded: boolean; /** * Determines whether file must be chunked during the transfer. This is only a property of SENDER pipelines. */ readonly isChunkingEnabled: boolean; /** * Enable file override feature in destination bucket. If 2 files with same name exist in destination bucket, original file will be overwritten. */ readonly isFileOverrideInDestinationEnabled: boolean; /** * Determines whether GDP Scanning should be enabled for the pipeline. */ readonly isScanningEnabled: boolean; /** * Additional details about the current state of the pipeline. */ readonly lifecycleDetails: string; /** * OCID of the peered pipeline. This null for SENDER pipeline. */ readonly peeredGdpPipelineId: string; /** * Public region name where the peered pipeline exists. */ readonly peeringRegion: string; /** * Type of pipeline. Can be SENDER or RECEIVER. */ readonly pipelineType: string; /** * the OCID of the service log group. */ readonly serviceLogGroupId: string; /** * The current state of the pipeline. */ 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; }; /** * The time the the pipeline was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The time the pipeline was updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Gdp Pipeline resource in Oracle Cloud Infrastructure Gdp service. * * Retrieves a pipeline by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testGdpPipeline = oci.oci.getGdpGdpPipeline({ * gdpPipelineId: testGdpPipelineOciGdpGdpPipeline.id, * env: gdpEnv, * }); * ``` */ export declare function getGdpGdpPipelineOutput(args: GetGdpGdpPipelineOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getGdpGdpPipeline. */ export interface GetGdpGdpPipelineOutputArgs { /** * The environment where the pipeline resides. Valid values are COMMERCIAL or USGOV. Defaults to COMMERCIAL. */ env?: pulumi.Input; /** * Unique pipeline identifier. */ gdpPipelineId: pulumi.Input; } //# sourceMappingURL=getGdpGdpPipeline.d.ts.map