import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Gdp Pipeline resource in Oracle Cloud Infrastructure Gdp service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/ * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/gdp * * Creates a new pipeline. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testGdpPipeline = new oci.oci.GdpGdpPipeline("test_gdp_pipeline", { * bucketDetails: [{ * bucketType: gdpPipelineBucketDetailsBucketType, * id: gdpPipelineBucketDetailsId, * name: gdpPipelineBucketDetailsName, * namespace: gdpPipelineBucketDetailsNamespace, * }], * compartmentId: compartmentId, * displayName: gdpPipelineDisplayName, * peeringRegion: gdpPipelinePeeringRegion, * pipelineType: gdpPipelinePipelineType, * approvalKeyVaultId: testVault.id, * authorizationDetails: gdpPipelineAuthorizationDetails, * definedTags: { * "foo-namespace.bar-key": "value", * }, * description: gdpPipelineDescription, * env: gdpEnv, * fileTypes: gdpPipelineFileTypes, * freeformTags: { * "bar-key": "value", * }, * isApprovalNeeded: gdpPipelineIsApprovalNeeded === "true", * isChunkingEnabled: gdpPipelineIsChunkingEnabled === "true", * isFileOverrideInDestinationEnabled: gdpPipelineIsFileOverrideInDestinationEnabled === "true", * isScanningEnabled: gdpPipelineIsScanningEnabled === "true", * serviceLogGroupId: testLogGroup.id, * }); * ``` * * ## Import * * GdpPipelines can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:oci/gdpGdpPipeline:GdpGdpPipeline test_gdp_pipeline "id" * ``` */ export declare class GdpGdpPipeline extends pulumi.CustomResource { /** * Get an existing GdpGdpPipeline resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: GdpGdpPipelineState, opts?: pulumi.CustomResourceOptions): GdpGdpPipeline; /** * Returns true if the given object is an instance of GdpGdpPipeline. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is GdpGdpPipeline; /** * (Updatable) The KMS vault OCID used for cryptographic approvals of transfers. */ readonly approvalKeyVaultId: pulumi.Output; /** * (Updatable) Authorization information about the pipeline being configured. */ readonly authorizationDetails: pulumi.Output; /** * Configuration information about the buckets used for this pipeline. */ readonly bucketDetails: pulumi.Output; /** * (Updatable) The OCID of the compartment. */ readonly compartmentId: pulumi.Output; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: pulumi.Output<{ [key: string]: string; }>; /** * (Updatable) Short field input by customer for a description of the data pipeline use-case. */ readonly description: pulumi.Output; /** * (Updatable) Pipeline short name. */ readonly displayName: pulumi.Output; /** * The environment where the pipeline resides. Valid values are COMMERCIAL or USGOV. Defaults to COMMERCIAL. */ readonly env: pulumi.Output; /** * (Updatable) List of file types allowed to be transferred in the pipeline according to the authorization details (e.g. .pdf, .xml, .doc). */ readonly fileTypes: pulumi.Output; /** * (Updatable) 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: pulumi.Output<{ [key: string]: string; }>; /** * (Updatable) Determines whether file transfers need to go through an approval workflow. */ readonly isApprovalNeeded: pulumi.Output; /** * (Updatable) Determines whether file must be chunked during the transfer. This is only a property of SENDER pipelines. */ readonly isChunkingEnabled: pulumi.Output; /** * (Updatable) Enable file override feature in destination bucket. If 2 files with same name exist in destination bucket, original file will be overwritten. */ readonly isFileOverrideInDestinationEnabled: pulumi.Output; /** * (Updatable) Determines whether GDP Scanning should be enabled for the pipeline. */ readonly isScanningEnabled: pulumi.Output; /** * Additional details about the current state of the pipeline. */ readonly lifecycleDetails: pulumi.Output; /** * OCID of the peered pipeline. This null for SENDER pipeline. */ readonly peeredGdpPipelineId: pulumi.Output; /** * Public region name where the peered pipeline exists. */ readonly peeringRegion: pulumi.Output; /** * Type of pipeline. Can be SENDER or RECEIVER. */ readonly pipelineType: pulumi.Output; /** * (Updatable) the OCID of the service log group. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ readonly serviceLogGroupId: pulumi.Output; /** * The current state of the pipeline. */ readonly state: pulumi.Output; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: pulumi.Output<{ [key: string]: string; }>; /** * The time the the pipeline was created. An RFC3339 formatted datetime string. */ readonly timeCreated: pulumi.Output; /** * The time the pipeline was updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: pulumi.Output; /** * Create a GdpGdpPipeline resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: GdpGdpPipelineArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering GdpGdpPipeline resources. */ export interface GdpGdpPipelineState { /** * (Updatable) The KMS vault OCID used for cryptographic approvals of transfers. */ approvalKeyVaultId?: pulumi.Input; /** * (Updatable) Authorization information about the pipeline being configured. */ authorizationDetails?: pulumi.Input; /** * Configuration information about the buckets used for this pipeline. */ bucketDetails?: pulumi.Input[] | undefined>; /** * (Updatable) The OCID of the compartment. */ compartmentId?: pulumi.Input; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) Short field input by customer for a description of the data pipeline use-case. */ description?: pulumi.Input; /** * (Updatable) Pipeline short name. */ displayName?: pulumi.Input; /** * The environment where the pipeline resides. Valid values are COMMERCIAL or USGOV. Defaults to COMMERCIAL. */ env?: pulumi.Input; /** * (Updatable) List of file types allowed to be transferred in the pipeline according to the authorization details (e.g. .pdf, .xml, .doc). */ fileTypes?: pulumi.Input[] | undefined>; /** * (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) Determines whether file transfers need to go through an approval workflow. */ isApprovalNeeded?: pulumi.Input; /** * (Updatable) Determines whether file must be chunked during the transfer. This is only a property of SENDER pipelines. */ isChunkingEnabled?: pulumi.Input; /** * (Updatable) Enable file override feature in destination bucket. If 2 files with same name exist in destination bucket, original file will be overwritten. */ isFileOverrideInDestinationEnabled?: pulumi.Input; /** * (Updatable) Determines whether GDP Scanning should be enabled for the pipeline. */ isScanningEnabled?: pulumi.Input; /** * Additional details about the current state of the pipeline. */ lifecycleDetails?: pulumi.Input; /** * OCID of the peered pipeline. This null for SENDER pipeline. */ peeredGdpPipelineId?: pulumi.Input; /** * Public region name where the peered pipeline exists. */ peeringRegion?: pulumi.Input; /** * Type of pipeline. Can be SENDER or RECEIVER. */ pipelineType?: pulumi.Input; /** * (Updatable) the OCID of the service log group. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ serviceLogGroupId?: pulumi.Input; /** * The current state of the pipeline. */ state?: pulumi.Input; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ systemTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The time the the pipeline was created. An RFC3339 formatted datetime string. */ timeCreated?: pulumi.Input; /** * The time the pipeline was updated. An RFC3339 formatted datetime string. */ timeUpdated?: pulumi.Input; } /** * The set of arguments for constructing a GdpGdpPipeline resource. */ export interface GdpGdpPipelineArgs { /** * (Updatable) The KMS vault OCID used for cryptographic approvals of transfers. */ approvalKeyVaultId?: pulumi.Input; /** * (Updatable) Authorization information about the pipeline being configured. */ authorizationDetails?: pulumi.Input; /** * Configuration information about the buckets used for this pipeline. */ bucketDetails: pulumi.Input[]>; /** * (Updatable) The OCID of the compartment. */ compartmentId: pulumi.Input; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) Short field input by customer for a description of the data pipeline use-case. */ description?: pulumi.Input; /** * (Updatable) Pipeline short name. */ displayName: pulumi.Input; /** * The environment where the pipeline resides. Valid values are COMMERCIAL or USGOV. Defaults to COMMERCIAL. */ env?: pulumi.Input; /** * (Updatable) List of file types allowed to be transferred in the pipeline according to the authorization details (e.g. .pdf, .xml, .doc). */ fileTypes?: pulumi.Input[] | undefined>; /** * (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) Determines whether file transfers need to go through an approval workflow. */ isApprovalNeeded?: pulumi.Input; /** * (Updatable) Determines whether file must be chunked during the transfer. This is only a property of SENDER pipelines. */ isChunkingEnabled?: pulumi.Input; /** * (Updatable) Enable file override feature in destination bucket. If 2 files with same name exist in destination bucket, original file will be overwritten. */ isFileOverrideInDestinationEnabled?: pulumi.Input; /** * (Updatable) Determines whether GDP Scanning should be enabled for the pipeline. */ isScanningEnabled?: pulumi.Input; /** * Public region name where the peered pipeline exists. */ peeringRegion: pulumi.Input; /** * Type of pipeline. Can be SENDER or RECEIVER. */ pipelineType: pulumi.Input; /** * (Updatable) the OCID of the service log group. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ serviceLogGroupId?: pulumi.Input; /** * The current state of the pipeline. */ state?: pulumi.Input; } //# sourceMappingURL=gdpGdpPipeline.d.ts.map