UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

531 lines (530 loc) 31.4 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DevopsDeployPipelineConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_pipeline#defined_tags DevopsDeployPipeline#defined_tags} */ readonly definedTags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_pipeline#description DevopsDeployPipeline#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_pipeline#display_name DevopsDeployPipeline#display_name} */ readonly displayName?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_pipeline#freeform_tags DevopsDeployPipeline#freeform_tags} */ readonly freeformTags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_pipeline#id DevopsDeployPipeline#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_pipeline#project_id DevopsDeployPipeline#project_id} */ readonly projectId: string; /** * deploy_pipeline_parameters block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_pipeline#deploy_pipeline_parameters DevopsDeployPipeline#deploy_pipeline_parameters} */ readonly deployPipelineParameters?: DevopsDeployPipelineDeployPipelineParameters; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_pipeline#timeouts DevopsDeployPipeline#timeouts} */ readonly timeouts?: DevopsDeployPipelineTimeouts; } export interface DevopsDeployPipelineDeployPipelineArtifactsItemsDeployPipelineStagesItems { } export declare function devopsDeployPipelineDeployPipelineArtifactsItemsDeployPipelineStagesItemsToTerraform(struct?: DevopsDeployPipelineDeployPipelineArtifactsItemsDeployPipelineStagesItems): any; export declare function devopsDeployPipelineDeployPipelineArtifactsItemsDeployPipelineStagesItemsToHclTerraform(struct?: DevopsDeployPipelineDeployPipelineArtifactsItemsDeployPipelineStagesItems): any; export declare class DevopsDeployPipelineDeployPipelineArtifactsItemsDeployPipelineStagesItemsOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): DevopsDeployPipelineDeployPipelineArtifactsItemsDeployPipelineStagesItems | undefined; set internalValue(value: DevopsDeployPipelineDeployPipelineArtifactsItemsDeployPipelineStagesItems | undefined); get deployStageId(): string; get displayName(): string; } export declare class DevopsDeployPipelineDeployPipelineArtifactsItemsDeployPipelineStagesItemsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): DevopsDeployPipelineDeployPipelineArtifactsItemsDeployPipelineStagesItemsOutputReference; } export interface DevopsDeployPipelineDeployPipelineArtifactsItemsDeployPipelineStages { } export declare function devopsDeployPipelineDeployPipelineArtifactsItemsDeployPipelineStagesToTerraform(struct?: DevopsDeployPipelineDeployPipelineArtifactsItemsDeployPipelineStages): any; export declare function devopsDeployPipelineDeployPipelineArtifactsItemsDeployPipelineStagesToHclTerraform(struct?: DevopsDeployPipelineDeployPipelineArtifactsItemsDeployPipelineStages): any; export declare class DevopsDeployPipelineDeployPipelineArtifactsItemsDeployPipelineStagesOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): DevopsDeployPipelineDeployPipelineArtifactsItemsDeployPipelineStages | undefined; set internalValue(value: DevopsDeployPipelineDeployPipelineArtifactsItemsDeployPipelineStages | undefined); private _items; get items(): DevopsDeployPipelineDeployPipelineArtifactsItemsDeployPipelineStagesItemsList; } export declare class DevopsDeployPipelineDeployPipelineArtifactsItemsDeployPipelineStagesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): DevopsDeployPipelineDeployPipelineArtifactsItemsDeployPipelineStagesOutputReference; } export interface DevopsDeployPipelineDeployPipelineArtifactsItems { } export declare function devopsDeployPipelineDeployPipelineArtifactsItemsToTerraform(struct?: DevopsDeployPipelineDeployPipelineArtifactsItems): any; export declare function devopsDeployPipelineDeployPipelineArtifactsItemsToHclTerraform(struct?: DevopsDeployPipelineDeployPipelineArtifactsItems): any; export declare class DevopsDeployPipelineDeployPipelineArtifactsItemsOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): DevopsDeployPipelineDeployPipelineArtifactsItems | undefined; set internalValue(value: DevopsDeployPipelineDeployPipelineArtifactsItems | undefined); get deployArtifactId(): string; private _deployPipelineStages; get deployPipelineStages(): DevopsDeployPipelineDeployPipelineArtifactsItemsDeployPipelineStagesList; get displayName(): string; } export declare class DevopsDeployPipelineDeployPipelineArtifactsItemsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): DevopsDeployPipelineDeployPipelineArtifactsItemsOutputReference; } export interface DevopsDeployPipelineDeployPipelineArtifacts { } export declare function devopsDeployPipelineDeployPipelineArtifactsToTerraform(struct?: DevopsDeployPipelineDeployPipelineArtifacts): any; export declare function devopsDeployPipelineDeployPipelineArtifactsToHclTerraform(struct?: DevopsDeployPipelineDeployPipelineArtifacts): any; export declare class DevopsDeployPipelineDeployPipelineArtifactsOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): DevopsDeployPipelineDeployPipelineArtifacts | undefined; set internalValue(value: DevopsDeployPipelineDeployPipelineArtifacts | undefined); private _items; get items(): DevopsDeployPipelineDeployPipelineArtifactsItemsList; } export declare class DevopsDeployPipelineDeployPipelineArtifactsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): DevopsDeployPipelineDeployPipelineArtifactsOutputReference; } export interface DevopsDeployPipelineDeployPipelineEnvironmentsItemsDeployPipelineStagesItems { } export declare function devopsDeployPipelineDeployPipelineEnvironmentsItemsDeployPipelineStagesItemsToTerraform(struct?: DevopsDeployPipelineDeployPipelineEnvironmentsItemsDeployPipelineStagesItems): any; export declare function devopsDeployPipelineDeployPipelineEnvironmentsItemsDeployPipelineStagesItemsToHclTerraform(struct?: DevopsDeployPipelineDeployPipelineEnvironmentsItemsDeployPipelineStagesItems): any; export declare class DevopsDeployPipelineDeployPipelineEnvironmentsItemsDeployPipelineStagesItemsOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): DevopsDeployPipelineDeployPipelineEnvironmentsItemsDeployPipelineStagesItems | undefined; set internalValue(value: DevopsDeployPipelineDeployPipelineEnvironmentsItemsDeployPipelineStagesItems | undefined); get deployStageId(): string; get displayName(): string; } export declare class DevopsDeployPipelineDeployPipelineEnvironmentsItemsDeployPipelineStagesItemsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): DevopsDeployPipelineDeployPipelineEnvironmentsItemsDeployPipelineStagesItemsOutputReference; } export interface DevopsDeployPipelineDeployPipelineEnvironmentsItemsDeployPipelineStages { } export declare function devopsDeployPipelineDeployPipelineEnvironmentsItemsDeployPipelineStagesToTerraform(struct?: DevopsDeployPipelineDeployPipelineEnvironmentsItemsDeployPipelineStages): any; export declare function devopsDeployPipelineDeployPipelineEnvironmentsItemsDeployPipelineStagesToHclTerraform(struct?: DevopsDeployPipelineDeployPipelineEnvironmentsItemsDeployPipelineStages): any; export declare class DevopsDeployPipelineDeployPipelineEnvironmentsItemsDeployPipelineStagesOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): DevopsDeployPipelineDeployPipelineEnvironmentsItemsDeployPipelineStages | undefined; set internalValue(value: DevopsDeployPipelineDeployPipelineEnvironmentsItemsDeployPipelineStages | undefined); private _items; get items(): DevopsDeployPipelineDeployPipelineEnvironmentsItemsDeployPipelineStagesItemsList; } export declare class DevopsDeployPipelineDeployPipelineEnvironmentsItemsDeployPipelineStagesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): DevopsDeployPipelineDeployPipelineEnvironmentsItemsDeployPipelineStagesOutputReference; } export interface DevopsDeployPipelineDeployPipelineEnvironmentsItems { } export declare function devopsDeployPipelineDeployPipelineEnvironmentsItemsToTerraform(struct?: DevopsDeployPipelineDeployPipelineEnvironmentsItems): any; export declare function devopsDeployPipelineDeployPipelineEnvironmentsItemsToHclTerraform(struct?: DevopsDeployPipelineDeployPipelineEnvironmentsItems): any; export declare class DevopsDeployPipelineDeployPipelineEnvironmentsItemsOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): DevopsDeployPipelineDeployPipelineEnvironmentsItems | undefined; set internalValue(value: DevopsDeployPipelineDeployPipelineEnvironmentsItems | undefined); get deployEnvironmentId(): string; private _deployPipelineStages; get deployPipelineStages(): DevopsDeployPipelineDeployPipelineEnvironmentsItemsDeployPipelineStagesList; get displayName(): string; } export declare class DevopsDeployPipelineDeployPipelineEnvironmentsItemsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): DevopsDeployPipelineDeployPipelineEnvironmentsItemsOutputReference; } export interface DevopsDeployPipelineDeployPipelineEnvironments { } export declare function devopsDeployPipelineDeployPipelineEnvironmentsToTerraform(struct?: DevopsDeployPipelineDeployPipelineEnvironments): any; export declare function devopsDeployPipelineDeployPipelineEnvironmentsToHclTerraform(struct?: DevopsDeployPipelineDeployPipelineEnvironments): any; export declare class DevopsDeployPipelineDeployPipelineEnvironmentsOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): DevopsDeployPipelineDeployPipelineEnvironments | undefined; set internalValue(value: DevopsDeployPipelineDeployPipelineEnvironments | undefined); private _items; get items(): DevopsDeployPipelineDeployPipelineEnvironmentsItemsList; } export declare class DevopsDeployPipelineDeployPipelineEnvironmentsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): DevopsDeployPipelineDeployPipelineEnvironmentsOutputReference; } export interface DevopsDeployPipelineDeployPipelineParametersItems { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_pipeline#default_value DevopsDeployPipeline#default_value} */ readonly defaultValue?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_pipeline#description DevopsDeployPipeline#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_pipeline#name DevopsDeployPipeline#name} */ readonly name: string; } export declare function devopsDeployPipelineDeployPipelineParametersItemsToTerraform(struct?: DevopsDeployPipelineDeployPipelineParametersItems | cdktf.IResolvable): any; export declare function devopsDeployPipelineDeployPipelineParametersItemsToHclTerraform(struct?: DevopsDeployPipelineDeployPipelineParametersItems | cdktf.IResolvable): any; export declare class DevopsDeployPipelineDeployPipelineParametersItemsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): DevopsDeployPipelineDeployPipelineParametersItems | cdktf.IResolvable | undefined; set internalValue(value: DevopsDeployPipelineDeployPipelineParametersItems | cdktf.IResolvable | undefined); private _defaultValue?; get defaultValue(): string; set defaultValue(value: string); resetDefaultValue(): void; get defaultValueInput(): string | undefined; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string | undefined; private _name?; get name(): string; set name(value: string); get nameInput(): string | undefined; } export declare class DevopsDeployPipelineDeployPipelineParametersItemsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: DevopsDeployPipelineDeployPipelineParametersItems[] | cdktf.IResolvable; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): DevopsDeployPipelineDeployPipelineParametersItemsOutputReference; } export interface DevopsDeployPipelineDeployPipelineParameters { /** * items block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_pipeline#items DevopsDeployPipeline#items} */ readonly items: DevopsDeployPipelineDeployPipelineParametersItems[] | cdktf.IResolvable; } export declare function devopsDeployPipelineDeployPipelineParametersToTerraform(struct?: DevopsDeployPipelineDeployPipelineParametersOutputReference | DevopsDeployPipelineDeployPipelineParameters): any; export declare function devopsDeployPipelineDeployPipelineParametersToHclTerraform(struct?: DevopsDeployPipelineDeployPipelineParametersOutputReference | DevopsDeployPipelineDeployPipelineParameters): any; export declare class DevopsDeployPipelineDeployPipelineParametersOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): DevopsDeployPipelineDeployPipelineParameters | undefined; set internalValue(value: DevopsDeployPipelineDeployPipelineParameters | undefined); private _items; get items(): DevopsDeployPipelineDeployPipelineParametersItemsList; putItems(value: DevopsDeployPipelineDeployPipelineParametersItems[] | cdktf.IResolvable): void; get itemsInput(): cdktf.IResolvable | DevopsDeployPipelineDeployPipelineParametersItems[] | undefined; } export interface DevopsDeployPipelineTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_pipeline#create DevopsDeployPipeline#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_pipeline#delete DevopsDeployPipeline#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_pipeline#update DevopsDeployPipeline#update} */ readonly update?: string; } export declare function devopsDeployPipelineTimeoutsToTerraform(struct?: DevopsDeployPipelineTimeouts | cdktf.IResolvable): any; export declare function devopsDeployPipelineTimeoutsToHclTerraform(struct?: DevopsDeployPipelineTimeouts | cdktf.IResolvable): any; export declare class DevopsDeployPipelineTimeoutsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): DevopsDeployPipelineTimeouts | cdktf.IResolvable | undefined; set internalValue(value: DevopsDeployPipelineTimeouts | cdktf.IResolvable | undefined); private _create?; get create(): string; set create(value: string); resetCreate(): void; get createInput(): string | undefined; private _delete?; get delete(): string; set delete(value: string); resetDelete(): void; get deleteInput(): string | undefined; private _update?; get update(): string; set update(value: string); resetUpdate(): void; get updateInput(): string | undefined; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_pipeline oci_devops_deploy_pipeline} */ export declare class DevopsDeployPipeline extends cdktf.TerraformResource { static readonly tfResourceType = "oci_devops_deploy_pipeline"; /** * Generates CDKTF code for importing a DevopsDeployPipeline resource upon running "cdktf plan <stack-name>" * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the DevopsDeployPipeline to import * @param importFromId The id of the existing DevopsDeployPipeline that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_pipeline#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DevopsDeployPipeline to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource; /** * Create a new {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_pipeline oci_devops_deploy_pipeline} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options DevopsDeployPipelineConfig */ constructor(scope: Construct, id: string, config: DevopsDeployPipelineConfig); get compartmentId(): string; private _definedTags?; get definedTags(): { [key: string]: string; }; set definedTags(value: { [key: string]: string; }); resetDefinedTags(): void; get definedTagsInput(): { [key: string]: string; } | undefined; private _deployPipelineArtifacts; get deployPipelineArtifacts(): DevopsDeployPipelineDeployPipelineArtifactsList; private _deployPipelineEnvironments; get deployPipelineEnvironments(): DevopsDeployPipelineDeployPipelineEnvironmentsList; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string | undefined; private _displayName?; get displayName(): string; set displayName(value: string); resetDisplayName(): void; get displayNameInput(): string | undefined; private _freeformTags?; get freeformTags(): { [key: string]: string; }; set freeformTags(value: { [key: string]: string; }); resetFreeformTags(): void; get freeformTagsInput(): { [key: string]: string; } | undefined; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; get lifecycleDetails(): string; private _projectId?; get projectId(): string; set projectId(value: string); get projectIdInput(): string | undefined; get state(): string; private _systemTags; get systemTags(): cdktf.StringMap; get timeCreated(): string; get timeUpdated(): string; private _deployPipelineParameters; get deployPipelineParameters(): DevopsDeployPipelineDeployPipelineParametersOutputReference; putDeployPipelineParameters(value: DevopsDeployPipelineDeployPipelineParameters): void; resetDeployPipelineParameters(): void; get deployPipelineParametersInput(): DevopsDeployPipelineDeployPipelineParameters | undefined; private _timeouts; get timeouts(): DevopsDeployPipelineTimeoutsOutputReference; putTimeouts(value: DevopsDeployPipelineTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | DevopsDeployPipelineTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }